Preview: fresco-db.sql
Size: 3.75 MB
/var/www/fresco.wpress.dk/httpdocs/fresco-db.sql
-- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64)
--
-- Host: localhost Database: fresco-db
-- ------------------------------------------------------
-- Server version 5.7.42-0ubuntu0.18.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `fresco_commentmeta`
--
DROP TABLE IF EXISTS `fresco_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fresco_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fresco_commentmeta`
--
LOCK TABLES `fresco_commentmeta` WRITE;
/*!40000 ALTER TABLE `fresco_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `fresco_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fresco_comments`
--
DROP TABLE IF EXISTS `fresco_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fresco_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fresco_comments`
--
LOCK TABLES `fresco_comments` WRITE;
/*!40000 ALTER TABLE `fresco_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `fresco_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fresco_links`
--
DROP TABLE IF EXISTS `fresco_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fresco_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fresco_links`
--
LOCK TABLES `fresco_links` WRITE;
/*!40000 ALTER TABLE `fresco_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `fresco_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fresco_options`
--
DROP TABLE IF EXISTS `fresco_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fresco_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=15718 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fresco_options`
--
LOCK TABLES `fresco_options` WRITE;
/*!40000 ALTER TABLE `fresco_options` DISABLE KEYS */;
INSERT INTO `fresco_options` VALUES (1,'siteurl','https://fresco.wpress.dk','yes'),(2,'home','https://fresco.wpress.dk','yes'),(3,'blogname','Fresco','yes'),(4,'blogdescription','Fresco - Italian Restaurant','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','sreeja.vijayan@phases.dk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','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','','yes'),(20,'default_ping_status','','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:97:{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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=138&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:6:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:32:\"duplicate-page/duplicatepage.php\";i:2;s:25:\"sucuri-scanner/sucuri.php\";i:3;s:33:\"w3-total-cache/w3-total-cache.php\";i:4;s:23:\"wordfence/wordfence.php\";i:5;s:23:\"wp-smushit/wp-smush.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/style.css\";i:2;s:0:\"\";}','no'),(40,'template','fresco','yes'),(41,'stylesheet','fresco','yes'),(42,'comment_registration','','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','editor','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:25:\"sucuri-scanner/sucuri.php\";s:19:\"sucuriscanUninstall\";s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','138','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1696591318','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'fresco_user_roles','a:2:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:23:{i:1696291200;a:1:{s:22:\"wdev_logger_clear_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:1696332536;a:1:{s:40:\"wordfence_completeCoreUpdateNotification\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1696332559;a:1:{s:23:\"wordfence_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1696332560;a:1:{s:25:\"smush_check_for_conflicts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1696332568;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1696332573;a:2:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1696334961;a:3:{s:22:\"w3_objectcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:22:\"w3_objectcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:18:\"w3_dbcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_dbcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:18:\"w3_pgcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_pgcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1696335253;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:1696360453;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1696360454;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:1696362675;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1696370400;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"ef43ac4f3833b7605500ee5afee6cb42\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1696370400;}}}}i:1696397925;a:1:{s:25:\"sucuriscan_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1696403653;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:1696403667;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1696403668;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:1696414161;a:1:{s:17:\"w3_minify_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:17:\"w3_minify_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1696576453;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:1696587069;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1696629600;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"c63367999b6a2078446efcbdc95513de\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1696629600;}}}}i:1696867200;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1696888800;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"f502c3a43678d2eb4b8e5595deb783cf\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1696888800;}}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1635406645;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(119,'recovery_keys','a:0:{}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(148,'finished_updating_comment_type','1','yes'),(156,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(160,'current_theme','Fresco','yes'),(161,'theme_mods_fresco','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(162,'theme_switched','','yes'),(163,'recovery_mode_email_last_sent','1695985240','yes'),(164,'recently_activated','a:0:{}','yes'),(169,'acf_version','6.2.1.1','yes'),(172,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3MjoiYjNKa1pYSmZhV1E5TnpFNU1ERjhkSGx3WlQxa1pYWmxiRzl3WlhKOFpHRjBaVDB5TURFMkxUQXhMVEEwSURFeE9qVXdPalEyIjtzOjM6InVybCI7czoyNDoiaHR0cHM6Ly9mcmVzY28ud3ByZXNzLmRrIjt9','yes'),(179,'category_children','a:0:{}','yes'),(250,'options_header_en_header_en_logo','142','no'),(251,'_options_header_en_header_en_logo','field_617a5efe6b4f4','no'),(252,'options_header_en_header_en_enable_reservation_cta','1','no'),(253,'_options_header_en_header_en_enable_reservation_cta','field_617a5f2e6b4f5','no'),(254,'options_header_en_header_english_page_link','a:3:{s:5:\"title\";s:2:\"EN\";s:3:\"url\";s:28:\"https://fresco.wpress.dk/en/\";s:6:\"target\";s:0:\"\";}','no'),(255,'_options_header_en_header_english_page_link','field_617a60f36b4f8','no'),(256,'options_header_en','','no'),(257,'_options_header_en','field_617a5ee76b4f2','no'),(258,'options_header_jp_header_jp_logo','142','no'),(259,'_options_header_jp_header_jp_logo','field_617a61346b4fa','no'),(260,'options_header_jp_header_jp_enable_reservation_cta','1','no'),(261,'_options_header_jp_header_jp_enable_reservation_cta','field_617a61346b4fb','no'),(262,'options_header_jp_header_japan_page_link','a:3:{s:5:\"title\";s:2:\"JP\";s:3:\"url\";s:28:\"https://fresco.wpress.dk/jp/\";s:6:\"target\";s:0:\"\";}','no'),(263,'_options_header_jp_header_japan_page_link','field_617a61346b4fe','no'),(264,'options_header_jp','','no'),(265,'_options_header_jp','field_617a61346b4f9','no'),(266,'options_footer_en_footer_en_title','ADA ACCESS FOR FRESCO','no'),(267,'_options_footer_en_footer_en_title','field_617a62d96b500','no'),(268,'options_footer_en_footer_en_desc','<p class=\"p1\" style=\"text-align: left;\">Located at the Rainbow Bazaar, Fresco is only accessible by stairs. Patrons unable to negotiate steps will be served on tables situated on the 1st Level of the Rainbow Bazaar, near the stairs leading up to the restaurant. Otherwise, customers may order from the Fresco menu at Tropics Bar & Grill and Bali Steak & Seafood.</p>','no'),(269,'_options_footer_en_footer_en_desc','field_617a63516b501','no'),(270,'options_footer_en_footer_en_awards','3','no'),(271,'_options_footer_en_footer_en_awards','field_617a63936b502','no'),(272,'options_footer_en_footer_en_awards_book_now_image','176','no'),(273,'_options_footer_en_footer_en_awards_book_now_image','field_617a640a6b504','no'),(274,'options_footer_en_footer_en_awards_book_now_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:92:\"https://www.opentable.com/fresco-hilton-hawaiian-village-reservations-honolulu?restref=94243\";s:6:\"target\";s:6:\"_blank\";}','no'),(275,'_options_footer_en_footer_en_awards_book_now_link','field_617a64266b505','no'),(276,'options_footer_en_footer_en_address','<strong>Fresco Italian Restaurant</strong>\r\n\r\nHilton Hawaiian Village, Rainbow Bazaar 2F\r\n\r\n2005 Kalia Road Honolulu, Hawaii 96815','no'),(277,'_options_footer_en_footer_en_address','field_617a653f6b506','no'),(278,'options_footer_en_footer_en_contact_info','Phone: <a href=\"tel:808.941.8868\">808.941.8868</a>\r\n\r\nFax: <a href=\"fax:\">808.947.7051</a>\r\n\r\nEmail: <a href=\"mailto:info@frescohawaii.com\">info@frescohawaii.com</a>','no'),(279,'_options_footer_en_footer_en_contact_info','field_617a66816b50c','no'),(280,'options_footer_en_footer_en_hours','Operation Hours:\r\n\r\nBreakfast\r\n\r\n7:00 am - 11:00 am (Monday - Friday)\r\n\r\n7:00 am - 12:00 pm (Saturday - Sunday)\r\n\r\n(Breakfast is closed on Tuesday & Wednesday)\r\n\r\n \r\n\r\nDinner\r\n\r\n4:00 pm - 9:30 pm (Daily)\r\n\r\nParking validation is available up to 4 hours at the Hilton Hawaiian Village self-parking garage.','no'),(281,'_options_footer_en_footer_en_hours','field_617a65ad6b508','no'),(282,'options_footer_en_footer_en_enable_google_cta','1','no'),(283,'_options_footer_en_footer_en_enable_google_cta','field_617a65e86b509','no'),(284,'options_footer_en_footer_en_copyright_text','Copyright © Fresco Italian Restaurant','no'),(285,'_options_footer_en_footer_en_copyright_text','field_617a67556b50e','no'),(286,'options_footer_en','','no'),(287,'_options_footer_en','field_617a62ca6b4ff','no'),(288,'options_footer_jp_footer_jp_title','フレスコのバリアフリー設備について','no'),(289,'_options_footer_jp_footer_jp_title','field_617a677f6b510','no'),(290,'options_footer_jp_footer_jp_desc','<p style=\"text-align: left;\">レインボーバザールの2階にあるフレスコへのアクセスは、階段のみとなっております。階段を上ることのできないお客様のためには、レインボーバザールの1階にお席を用意させていただきます。または、トロピックス・バー&グリルとバリ・ステーキ&シーフードのお席からも、フレスコのメニューをオーダーしていただくことが可能です。</p>','no'),(291,'_options_footer_jp_footer_jp_desc','field_617a677f6b511','no'),(292,'options_footer_jp_footer_jp_awards','3','no'),(293,'_options_footer_jp_footer_jp_awards','field_617a677f6b512','no'),(294,'options_footer_jp_footer_jp_awards_book_now_image','176','no'),(295,'_options_footer_jp_footer_jp_awards_book_now_image','field_617a677f6b514','no'),(296,'options_footer_jp_footer_jp_awards_book_now_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:92:\"https://www.opentable.com/fresco-hilton-hawaiian-village-reservations-honolulu?restref=94243\";s:6:\"target\";s:6:\"_blank\";}','no'),(297,'_options_footer_jp_footer_jp_awards_book_now_link','field_617a677f6b515','no'),(298,'options_footer_jp_footer_jp_address','<strong>フレスコ・イタリアン・レストラン</strong>\r\n\r\nHilton Hawaiian Village, Rainbow Bazaar 2F\r\n\r\n2005 Kalia Road Honolulu, Hawaii 96815','no'),(299,'_options_footer_jp_footer_jp_address','field_617a677f6b516','no'),(300,'options_footer_jp_footer_jp_contact_info','<p id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">電話番号</span>: <a href=\"tel:808.941.8868\">808.941.8868</a></p>\r\n<p id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ファックス</span>: <a href=\"fax:\">808.947.7051</a></p>\r\n<p id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">メール</span>: <a href=\"mailto:info@frescohawaii.com\">info@frescohawaii.com</a></p>','no'),(301,'_options_footer_jp_footer_jp_contact_info','field_617a677f6b517','no'),(302,'options_footer_jp_footer_jp_hours','営業時間:\r\n\r\nブレックファスト\r\n\r\n7:00 - 11:00 am(月曜日〜金曜日)\r\n\r\n7:00 - 12:00 pm(土曜日〜日曜日)\r\n\r\n(火曜日・水曜日休み)\r\n\r\n \r\n\r\nディナー\r\n\r\n4:00 - 9:30 pm(毎日)','no'),(303,'_options_footer_jp_footer_jp_hours','field_617a677f6b518','no'),(304,'options_footer_jp_footer_jp_enable_google_cta','1','no'),(305,'_options_footer_jp_footer_jp_enable_google_cta','field_617a677f6b519','no'),(306,'options_footer_jp_footer_jp_copyright_text','Copyright © Fresco Italian Restaurant','no'),(307,'_options_footer_jp_footer_jp_copyright_text','field_617a677f6b51c','no'),(308,'options_footer_jp','','no'),(309,'_options_footer_jp','field_617a677f6b50f','no'),(310,'options_footer_facebook_link','https://www.facebook.com/FrescoItalianRestaurantHI','no'),(311,'_options_footer_facebook_link','field_617a760b4bbf8','no'),(312,'options_footer_instagram_link','https://www.instagram.com/frescohawaii/','no'),(313,'_options_footer_instagram_link','field_617a768a4bbf9','no'),(314,'options_footer_youtube_link','','no'),(315,'_options_footer_youtube_link','field_617a76a44bbfa','no'),(316,'options_menu_en_menu_en_title','OUR MENUS','no'),(317,'_options_menu_en_menu_en_title','field_617a8b1a926b0','no'),(318,'options_menu_en_menu_en_choose_pages','a:4:{i:0;s:3:\"222\";i:1;s:3:\"182\";i:2;s:3:\"223\";i:3;s:3:\"425\";}','no'),(319,'_options_menu_en_menu_en_choose_pages','field_617a8b5c926b2','no'),(320,'options_menu_en','','no'),(321,'_options_menu_en','field_617a8b0e926af','no'),(322,'options_menu_jp_menu_jp_title','メニュー','no'),(323,'_options_menu_jp_menu_jp_title','field_617a8bdd926b4','no'),(324,'options_menu_jp_menu_jp_choose_pages','a:4:{i:0;s:3:\"371\";i:1;s:3:\"374\";i:2;s:3:\"376\";i:3;s:3:\"411\";}','no'),(325,'_options_menu_jp_menu_jp_choose_pages','field_617a8bdd926b5','no'),(326,'options_menu_jp','','no'),(327,'_options_menu_jp','field_617a8bdd926b3','no'),(328,'options_404_en_404_en_title','','no'),(329,'_options_404_en_404_en_title','field_617a85be4bbfb','no'),(330,'options_404_en_404_en_subtitle','','no'),(331,'_options_404_en_404_en_subtitle','field_617a85c74bbfc','no'),(332,'options_404_en_404_en_desc','','no'),(333,'_options_404_en_404_en_desc','field_617a85dc4bbfd','no'),(334,'options_404_en','','no'),(335,'_options_404_en','field_617a887319bdf','no'),(336,'options_404_jp_copy_404_jp_title','','no'),(337,'_options_404_jp_copy_404_jp_title','field_617a88b019be2','no'),(338,'options_404_jp_copy_404_jp_subtitle','','no'),(339,'_options_404_jp_copy_404_jp_subtitle','field_617a88b019be3','no'),(340,'options_404_jp_copy_404_jp_desc','','no'),(341,'_options_404_jp_copy_404_jp_desc','field_617a88b019be4','no'),(342,'options_404_jp_copy','','no'),(343,'_options_404_jp_copy','field_617a88b019be1','no'),(345,'options_header_en_header_en_enable_reservation_cta_label',' Reservation ','no'),(346,'_options_header_en_header_en_enable_reservation_cta_label','field_617a5f726b4f6','no'),(347,'options_header_en_header_en_enable_reservation_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:92:\"https://www.opentable.com/fresco-hilton-hawaiian-village-reservations-honolulu?restref=94243\";s:6:\"target\";s:6:\"_blank\";}','no'),(348,'_options_header_en_header_en_enable_reservation_cta_link','field_617a5f9e6b4f7','no'),(356,'wp-smush-settings','a:23:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:1;s:6:\"backup\";b:0;s:8:\"no_scale\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}','yes'),(357,'wp-smush-install-type','existing','no'),(358,'wp-smush-version','3.14.2','no'),(361,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1635784804;}s:5:\"queue\";a:1:{s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1696418899;}}s:4:\"done\";a:1:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1635784804;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1696332510;}}}','no'),(362,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1635784804;}}','no'),(363,'smush_global_stats','a:9:{s:11:\"size_before\";i:7314279;s:10:\"size_after\";i:7072698;s:7:\"percent\";d:3.3;s:5:\"human\";s:8:\"235.9 KB\";s:5:\"bytes\";i:241581;s:12:\"total_images\";i:127;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(364,'wp-smush-preset_configs','a:1:{i:0;a:5:{s:2:\"id\";i:1;s:4:\"name\";s:14:\"Default config\";s:11:\"description\";s:46:\"Recommended performance config for every site.\";s:7:\"default\";b:1;s:6:\"config\";a:2:{s:7:\"configs\";a:1:{s:8:\"settings\";a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";i:1;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:1;s:6:\"backup\";b:1;s:10:\"png_to_jpg\";b:1;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}}s:7:\"strings\";a:6:{s:10:\"bulk_smush\";a:1:{i:0;s:184:\"Smush Mode - Super\nAutomatic compression - Active\nMetadata - Active\nImage Resizing - Inactive\nOriginal Images - Active\nBackup Original Images - Active\nPNG to JPEG Conversion - Inactive\";}s:9:\"lazy_load\";a:1:{i:0;s:8:\"Inactive\";}s:3:\"cdn\";a:1:{i:0;s:8:\"Inactive\";}s:8:\"webp_mod\";a:1:{i:0;s:8:\"Inactive\";}s:12:\"integrations\";a:1:{i:0;s:109:\"Gutenberg Support - Inactive\nWPBakery Page Builder - Inactive\nAmazon S3 - Inactive\nNextGen Gallery - Inactive\";}s:8:\"settings\";a:1:{i:0;s:122:\"Image Resize Detection - Inactive\nColor Accessibility - Inactive\nUsage Tracking - Inactive\nKeep Data On Uninstall - Active\";}}}}}','no'),(365,'skip-smush-setup','1','yes'),(368,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(468,'options_footer_en_footer_en_awards_0_footer_en_awards_image','173','no'),(469,'_options_footer_en_footer_en_awards_0_footer_en_awards_image','field_617a63ca6b503','no'),(470,'options_footer_en_footer_en_awards_1_footer_en_awards_image','174','no'),(471,'_options_footer_en_footer_en_awards_1_footer_en_awards_image','field_617a63ca6b503','no'),(472,'options_footer_en_footer_en_awards_2_footer_en_awards_image','175','no'),(473,'_options_footer_en_footer_en_awards_2_footer_en_awards_image','field_617a63ca6b503','no'),(490,'options_footer_en_footer_en_google_map_cta_label','GOOGLE MAPS','no'),(491,'_options_footer_en_footer_en_google_map_cta_label','field_617a662a6b50a','no'),(492,'options_footer_en_footer_en_google_map_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:220:\"https://www.google.com/maps/place/Fresco+Italian+Restaurant/@21.2830917,-157.8397065,17z/data=!3m2!4b1!5s0x7c006df5c7f9f11d:0xc6a82e231b0b90f3!4m5!3m4!1s0x7c006df5bf2b5817:0x156d206f857b27!8m2!3d21.2830917!4d-157.8375178\";s:6:\"target\";s:6:\"_blank\";}','no'),(493,'_options_footer_en_footer_en_google_map_cta_link','field_617a664d6b50b','no'),(505,'options_footer_jp_footer_jp_awards_0_footer_jp_awards_image','173','no'),(506,'_options_footer_jp_footer_jp_awards_0_footer_jp_awards_image','field_617a677f6b513','no'),(507,'options_footer_jp_footer_jp_awards_1_footer_jp_awards_image','174','no'),(508,'_options_footer_jp_footer_jp_awards_1_footer_jp_awards_image','field_617a677f6b513','no'),(509,'options_footer_jp_footer_jp_awards_2_footer_jp_awards_image','175','no'),(510,'_options_footer_jp_footer_jp_awards_2_footer_jp_awards_image','field_617a677f6b513','no'),(514,'options_footer_jp_footer_jp_google_map_cta_label','GOOGLE MAPS','no'),(515,'_options_footer_jp_footer_jp_google_map_cta_label','field_617a677f6b51a','no'),(516,'options_footer_jp_footer_jp_google_map_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:220:\"https://www.google.com/maps/place/Fresco+Italian+Restaurant/@21.2830917,-157.8397065,17z/data=!3m2!4b1!5s0x7c006df5c7f9f11d:0xc6a82e231b0b90f3!4m5!3m4!1s0x7c006df5bf2b5817:0x156d206f857b27!8m2!3d21.2830917!4d-157.8375178\";s:6:\"target\";s:6:\"_blank\";}','no'),(517,'_options_footer_jp_footer_jp_google_map_cta_link','field_617a677f6b51b','no'),(550,'options_header_jp_header_jp_enable_reservation_cta_label','予約','no'),(551,'_options_header_jp_header_jp_enable_reservation_cta_label','field_617a61346b4fc','no'),(552,'options_header_jp_header_jp_enable_reservation_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:92:\"https://www.opentable.com/fresco-hilton-hawaiian-village-reservations-honolulu?restref=94243\";s:6:\"target\";s:6:\"_blank\";}','no'),(553,'_options_header_jp_header_jp_enable_reservation_cta_link','field_617a61346b4fd','no'),(571,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(793,'WPLANG','','yes'),(794,'new_admin_email','sreeja.vijayan@phases.dk','yes'),(805,'options_404_language','1','no'),(806,'_options_404_language','field_6188d3c0186d7','no'),(807,'options_404_en_title','Oops!','no'),(808,'_options_404_en_title','field_617a85be4bbfb','no'),(809,'options_404_en_subtitle','404','no'),(810,'_options_404_en_subtitle','field_617a85c74bbfc','no'),(811,'options_404_en_desc','Page Not Found!\r\n\r\nThe page you are looking for might have been removed, had its name changed or is temporarily unavailable','no'),(812,'_options_404_en_desc','field_617a85dc4bbfd','no'),(813,'options_404_jp_title','おっとっと!','no'),(814,'_options_404_jp_title','field_6188d444572d7','no'),(815,'options_404_jp_subtitle','四百四','no'),(816,'_options_404_jp_subtitle','field_6188d448572d8','no'),(817,'options_404_jp_desc','ページが見つかりません!\r\n探しているページが削除されているか、名前が変更されているか、一時的に利用できない可能性があります','no'),(818,'_options_404_jp_desc','field_6188d44a572d9','no'),(826,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":2,\"critical\":2}','yes'),(934,'wfls_last_role_change','1696332558','no'),(935,'wordfence_version','7.10.4','yes'),(936,'wordfence_case','1','yes'),(937,'wordfence_installed','1','yes'),(938,'wordfenceActivated','1','yes'),(941,'wf_plugin_act_error','','yes'),(957,'wp-smush-hide-conflict-notice','1','yes'),(962,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:6:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:4:\"webp\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";s:1:\"1\";s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";s:1:\"1\";s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";N;s:8:\"noscript\";b:1;}','yes'),(995,'_transient_dirsize_cache','a:538:{s:48:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/user\";i:3418;s:52:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/includes\";i:2861430;s:51:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/network\";i:123822;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/modern\";i:77352;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/light\";i:77861;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/coffee\";i:74748;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/ectoplasm\";i:77279;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/ocean\";i:74770;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/blue\";i:77273;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/sunrise\";i:77298;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors/midnight\";i:77238;s:54:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css/colors\";i:636927;s:47:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/css\";i:2463608;s:54:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/js/widgets\";i:139408;s:46:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/js\";i:1897212;s:50:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/images\";i:389513;s:49:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin/maint\";i:7260;s:43:\"/var/www/fresco.wpress.dk/httpdocs/wp-admin\";i:8605172;s:52:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/wflogs\";i:5993029;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/upgrade\";i:0;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/smush-webp\";i:752;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/cache/tmpWpfc\";i:0;s:51:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/cache\";i:0;s:45:\"/var/www/fresco.wpress.dk/httpdocs/wp-content\";i:6061523;s:51:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/pomo\";i:52248;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/block-supports\";i:45726;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/theme-compat\";i:15414;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/namespaced\";i:2698;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15980;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122399;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6295;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core32\";i:437583;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/PHP52\";i:4116;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/Curve25519\";i:121533;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5152;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src/Core\";i:459958;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/src\";i:1212803;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat/lib\";i:84845;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sodium_compat\";i:1306435;s:52:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/fonts\";i:289826;s:50:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/IXR\";i:33914;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/certificates\";i:234459;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/HTTP\";i:11515;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Parse\";i:20551;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Net\";i:7493;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Cache\";i:39593;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Decode/HTML\";i:17241;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Decode\";i:17241;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/XML/Declaration\";i:7098;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/XML\";i:7098;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Content/Type\";i:8015;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie/Content\";i:8015;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/SimplePie\";i:455756;s:50:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/ID3\";i:1134191;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/random_compat\";i:40843;s:54:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/widgets\";i:155462;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sitemaps/providers\";i:15133;s:55:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/sitemaps\";i:45055;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Proxy\";i:3488;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Response\";i:2135;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Auth\";i:1939;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Utility\";i:3310;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Transport\";i:30090;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Cookie\";i:3865;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Exception/HTTP\";i:14365;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Exception/Transport\";i:919;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests/Exception\";i:16778;s:55:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Requests\";i:139225;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/editor\";i:95261;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/format-library\";i:11260;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/components\";i:533182;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/edit-post\";i:206821;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/block-library\";i:640961;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/nux\";i:13786;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/reusable-blocks\";i:4288;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/block-editor\";i:436575;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/widgets\";i:23866;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/list-reusable-blocks\";i:16478;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/customize-widgets\";i:29568;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/block-directory\";i:16954;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist/edit-widgets\";i:89899;s:55:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css/dist\";i:2118899;s:50:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/css\";i:2765182;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Text/Diff/Engine\";i:31662;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Text/Diff/Renderer\";i:5535;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Text/Diff\";i:44010;s:51:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/Text\";i:56925;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/utils\";i:18822;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/skins\";i:233085;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/themes/inlite\";i:452642;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/themes/modern\";i:446221;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/themes\";i:898863;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wptextpattern\";i:11927;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/media\";i:57914;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpeditimage\";i:37716;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/lists\";i:97383;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/link\";i:32949;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpgallery\";i:4808;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wpview\";i:8994;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/image\";i:55874;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/paste\";i:113193;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/wordpress\";i:50608;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins/hr\";i:1347;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/plugins\";i:606961;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/tinymce\";i:2853651;s:55:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/jcrop\";i:18340;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/jquery/ui\";i:793444;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/jquery\";i:1309881;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/imgareaselect\";i:49035;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/mediaelement/renderers\";i:18880;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/mediaelement\";i:719405;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/codemirror\";i:1287141;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/dist/vendor\";i:2310530;s:54:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/dist\";i:12738262;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/swfupload\";i:8715;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/plupload\";i:490247;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/thickbox\";i:31185;s:54:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js/crop\";i:20004;s:49:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/js\";i:21947559;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/customize\";i:170868;s:56:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/PHPMailer\";i:221082;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/images/smilies\";i:10082;s:57:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/images/wlw\";i:4413;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/images/media\";i:2419;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/images/crystal\";i:15541;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/images\";i:103747;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/assets\";i:10499;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/list\";i:3908;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-date\";i:537;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query-title\";i:3485;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/categories\";i:6592;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/spacer\";i:8824;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/buttons\";i:18381;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/missing\";i:509;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/html\";i:5448;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/search\";i:13482;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/button\";i:22207;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/block\";i:4552;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/table\";i:25114;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/site-logo\";i:13058;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query-pagination-numbers\";i:3898;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/paragraph\";i:9325;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/site-title\";i:3796;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-title\";i:3643;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/gallery\";i:50134;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/code\";i:3363;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/freeform\";i:41868;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/cover\";i:56553;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-excerpt\";i:6465;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/video\";i:17816;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/audio\";i:7013;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/group\";i:7376;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/media-text\";i:18137;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query-pagination\";i:11618;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/heading\";i:7680;s:57:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/rss\";i:11021;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-content\";i:3788;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/embed\";i:16808;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-template\";i:16149;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/shortcode\";i:7794;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query-pagination-previous\";i:526;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/pullquote\";i:11756;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/text-columns\";i:8291;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/verse\";i:3694;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/separator\";i:8212;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/legacy-widget\";i:501;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/site-tagline\";i:3650;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query-pagination-next\";i:514;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/image\";i:23825;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/page-list\";i:12826;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/archives\";i:3230;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/latest-comments\";i:7248;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/latest-posts\";i:16144;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/calendar\";i:4767;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/query\";i:4288;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/columns\";i:13242;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/more\";i:6369;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-featured-image\";i:9333;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/social-links\";i:57725;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/loginout\";i:455;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/tag-cloud\";i:6848;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/social-link\";i:4460;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/nextpage\";i:5644;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/preformatted\";i:3635;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/quote\";i:5041;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/file\";i:11958;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/post-terms\";i:451;s:60:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks/column\";i:542;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/blocks\";i:803053;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/rest-api/search\";i:15180;s:62:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/rest-api/fields\";i:22314;s:65:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/rest-api/endpoints\";i:583613;s:55:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/rest-api\";i:705110;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes/block-patterns\";i:9046;s:46:\"/var/www/fresco.wpress.dk/httpdocs/wp-includes\";i:37063568;s:34:\"/var/www/fresco.wpress.dk/httpdocs\";i:51900902;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts/post\";i:1148;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts/header\";i:4254;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts/excerpt\";i:4682;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts/footer\";i:307;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts/content\";i:6469;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/template-parts\";i:16860;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/classes\";i:77508;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/inc\";i:63619;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/css\";i:317825;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/js\";i:19768;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/images\";i:2128437;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/01-settings\";i:11555;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/04-elements\";i:12312;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/06-components\";i:36321;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list\";i:1063;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities\";i:7640;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer\";i:227;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/html\";i:223;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/search\";i:5410;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/button\";i:5846;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould\";i:201;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/table\";i:2937;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph\";i:497;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery\";i:801;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/code\";i:537;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover\";i:4533;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/video\";i:324;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio\";i:113;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/group\";i:3040;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons\";i:615;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text\";i:1389;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading\";i:2977;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss\";i:5502;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy\";i:1192;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote\";i:4215;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse\";i:127;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator\";i:2204;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/image\";i:1868;s:106:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments\";i:815;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts\";i:8536;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop\";i:358;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns\";i:3506;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation\";i:3141;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted\";i:189;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote\";i:5726;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks/file\";i:673;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/05-blocks\";i:78947;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/03-generic\";i:15944;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/02-tools\";i:6930;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass/07-utilities\";i:13585;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets/sass\";i:183749;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone/assets\";i:2649779;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/twentytwentyone\";i:3666597;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/template-parts/hero-section\";i:4152;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/template-parts/flexible-modules\";i:16064;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/template-parts\";i:20216;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/page-templates\";i:2202;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/inc\";i:12065;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/fonts/Gotham\";i:30116;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/fonts\";i:173611;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/Fonts/JansonText\";i:0;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/Fonts\";i:0;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/css\";i:45791;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/js\";i:200312;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/images/favicon\";i:143900;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets/images\";i:184146;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco/assets\";i:603860;s:59:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes/fresco\";i:677381;s:52:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/themes\";i:4344006;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/fonts\";i:0;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/js/modules\";i:60506;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/js/frontend\";i:9332;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/js/smush\";i:68940;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/js\";i:143323;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/react/modules\";i:7695;s:86:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/react/views/webp\";i:20237;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/react/views\";i:20237;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/react\";i:27932;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/images\";i:0;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/scss/accessibility\";i:1570;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/scss/modules\";i:37364;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src/scss\";i:60863;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/_src\";i:232118;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice/assets/fonts\";i:6083;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice/assets/css\";i:3496;s:102:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice/assets/js\";i:947;s:106:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice/assets/images\";i:87026;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice/assets\";i:97552;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/plugin-notice\";i:120961;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/free-dashboard/assets\";i:15290;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external/free-dashboard\";i:32622;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/external\";i:153583;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/modules/helpers\";i:14184;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/modules/async\";i:12572;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/modules\";i:236144;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/api\";i:12989;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/integrations/nextgen\";i:48902;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/integrations/s3\";i:1698;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core/integrations\";i:134924;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/core\";i:664329;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/modals\";i:30786;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/pages\";i:60346;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/modals\";i:0;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/webp\";i:9667;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/summary\";i:4545;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/cdn\";i:6706;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/dashboard/webp\";i:2430;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/dashboard/upsell\";i:1799;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/dashboard/cdn\";i:4326;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/dashboard/bulk\";i:2195;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/dashboard\";i:25168;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/settings\";i:11316;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/bulk-tutorials\";i:0;s:83:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/lazyload\";i:33081;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/summary\";i:0;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/cdn\";i:0;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/settings\";i:0;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/lazyload\";i:0;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/pro-features\";i:0;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/bulk-settings\";i:0;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/nextgen\";i:0;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/tools\";i:0;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/integrations\";i:0;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/bulk\";i:0;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes/directory\";i:0;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/meta-boxes\";i:0;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/pro-features\";i:6350;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/bulk-settings\";i:1453;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/nextgen\";i:5722;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/tutorials\";i:0;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/common\";i:0;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/tools\";i:1921;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/integrations\";i:2441;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/blocks\";i:0;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/bulk\";i:10832;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views/directory\";i:2864;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/views\";i:141421;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/common\";i:11692;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/fonts\";i:597336;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/css\";i:1012261;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/js\";i:4309201;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/images/onboarding\";i:185184;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/images/updated\";i:41025;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/images/tutorials\";i:0;s:82:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets/images\";i:1503205;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app/assets\";i:7422003;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/app\";i:7806575;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit/languages\";i:118248;s:64:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wp-smushit\";i:8862501;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/duplicate-page/inc\";i:6273;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/duplicate-page/css\";i:2327;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/duplicate-page/js\";i:1860;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/duplicate-page/languages\";i:49912;s:68:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/duplicate-page\";i:82943;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/admin/views\";i:31370;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/admin/tools\";i:16942;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/admin\";i:111756;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/ajax\";i:22576;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/fields\";i:268976;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/walkers\";i:5692;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/legacy\";i:1777;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/api\";i:126479;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/locations\";i:49066;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes/forms\";i:75885;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/includes\";i:932489;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/lang\";i:5002626;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/pro/admin/views\";i:4763;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/pro/admin\";i:20563;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/pro/fields\";i:107555;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/pro/locations\";i:3565;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/pro\";i:167984;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/build/css/pro\";i:33490;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/build/css\";i:241111;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/build/js/pro\";i:242511;s:96:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/build/js\";i:759114;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/build\";i:1000225;s:110:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/color-picker-alpha\";i:23705;s:102:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/timepicker\";i:123600;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/3\";i:237201;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2/4\";i:508778;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/select2\";i:745979;s:109:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker/images\";i:11397;s:102:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc/datepicker\";i:61331;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/inc\";i:954615;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets/images\";i:17845;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro/assets\";i:1972685;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/advanced-custom-fields-pro\";i:8124939;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/tmp\";i:15;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/model/view\";i:1813;s:109:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/model/settings\";i:4916;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/model/text\";i:1576;s:107:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto\";i:14246;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/model\";i:52579;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes/controller\";i:164561;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/classes\";i:217495;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/img\";i:48448;s:90:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/css\";i:368943;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/onboarding\";i:1761;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/user\";i:519;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/manage\";i:21033;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/email\";i:1649;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/options\";i:69291;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/settings\";i:11747;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/common\";i:7850;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views/page\";i:12773;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/views\";i:126978;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security/js\";i:114351;s:86:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules/login-security\";i:879634;s:71:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/modules\";i:879634;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/fonts\";i:289944;s:86:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib/Diff/Renderer/Html\";i:13763;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib/Diff/Renderer\";i:16813;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib/Diff\";i:34596;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib/dashboard\";i:37580;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib/rest-api\";i:26684;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/lib\";i:6503457;s:72:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/waf/pomo\";i:57958;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/waf\";i:120712;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database\";i:9662;s:99:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService\";i:11580;s:94:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model\";i:17600;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record\";i:17569;s:98:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception\";i:1509;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2/src\";i:58394;s:84:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2/geoip2\";i:71123;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/geoip2\";i:71123;s:117:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http\";i:3498;s:112:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService\";i:19321;s:111:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception\";i:2893;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src\";i:22214;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind/web-service-common\";i:33572;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind\";i:33572;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/composer/ca-bundle/src\";i:14169;s:93:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/composer/ca-bundle/res\";i:219596;s:89:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/composer/ca-bundle\";i:234817;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/composer\";i:261283;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage\";i:74605;s:102:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser\";i:126381;s:95:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib\";i:446177;s:97:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views\";i:47958;s:91:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src\";i:722335;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence/wf-waf\";i:722335;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/wordfence\";i:722335;s:110:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:14089;s:103:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db\";i:24445;s:100:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind\";i:24445;s:92:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db/reader/src\";i:24445;s:88:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db/reader\";i:37208;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor/maxmind-db\";i:37208;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/vendor\";i:1126135;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/css/images\";i:36376;s:67:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/css\";i:605741;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/blocking\";i:424957;s:80:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/onboarding\";i:37129;s:74:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/gdpr\";i:3821;s:81:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/diagnostics\";i:27252;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/options\";i:54444;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/dashboard\";i:56436;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/waf\";i:124019;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/scanner\";i:191299;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/tours\";i:4949;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/common\";i:30941;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/tools\";i:10689;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/reports\";i:45078;s:85:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views/unsupported-php\";i:838;s:69:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/views\";i:1012206;s:66:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/js\";i:841740;s:86:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/composer\";i:28498;s:126:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305\";i:171;s:131:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge\";i:897;s:128:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519\";i:1233;s:126:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20\";i:342;s:117:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core\";i:3801;s:112:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced\";i:4232;s:121:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305\";i:16039;s:126:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge\";i:8472;s:123:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519\";i:122594;s:121:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20\";i:6413;s:125:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream\";i:3715;s:112:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32\";i:438773;s:111:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52\";i:4071;s:119:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305\";i:12971;s:124:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge\";i:8176;s:121:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519\";i:120026;s:119:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20\";i:5270;s:117:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64\";i:22312;s:123:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream\";i:3683;s:110:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core\";i:389918;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src\";i:1131053;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib\";i:76379;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat\";i:1221342;s:107:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/other\";i:0;s:105:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib\";i:43114;s:106:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist\";i:703;s:101:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat\";i:45205;s:87:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor/paragonie\";i:1266547;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto/vendor\";i:1295305;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/crypto\";i:1295305;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/images/icons\";i:79564;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/images\";i:333312;s:73:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/languages\";i:371225;s:76:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models/block\";i:64812;s:78:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models/scanner\";i:39221;s:79:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models/firewall\";i:16494;s:77:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models/common\";i:3491;s:75:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models/page\";i:7216;s:70:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence/models\";i:131588;s:63:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins/wordfence\";i:13604784;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/plugins\";i:30675195;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/uploads/2021/11\";i:15281914;s:61:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/uploads/2021/10\";i:0;s:58:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/uploads/2021\";i:15281914;s:53:\"/var/www/fresco.wpress.dk/httpdocs/wp-content/uploads\";i:15282383;}','yes'),(1050,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"sreeja.vijayan@phases.dk\";s:7:\"version\";s:5:\"6.3.1\";s:9:\"timestamp\";i:1695982274;}','no'),(1072,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;}','yes'),(1085,'wordfence_ls_version','1.1.4','yes'),(1102,'w3tc_extensions_hooks','{\"actions\":[],\"filters\":[],\"next_check_date\":1696415868}','yes'),(1103,'w3tc_state','{\"common.install\":1636615238,\"common.install_version\":\"2.1.9\",\"license.status\":\"no_key\",\"license.next_check\":1696414280,\"license.terms\":\"\",\"license.community_terms\":\"accept\",\"minify.hide_minify_help\":true,\"common.show_note.flush_posts_needed\":false,\"common.show_note.flush_posts_needed.timestamp\":1646115677,\"common.show_note.plugins_updated\":false,\"common.show_note.plugins_updated.timestamp\":1646115678,\"objectcache.show_note.flush_needed\":false,\"objectcache.show_note.flush_needed.timestamp\":1646115532,\"common.next_support_us_invitation\":1662667495,\"common.support_us_invitations\":2}','no'),(1110,'w3tc_generic_widgetservices','{\"content\":{\"items\":[{\"name\":\"Premium Support Response (Usually <1h First Response)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Premium Support Response (Usually <1h First Response)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Plugin Configuration\",\"parameter_name\":\"field4\",\"parameter_value\":\"Plugin Configuration\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"SSL Performance Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"SSL Performance Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Full Site Delivery Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"Full Site Delivery Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Hosting Environment Troubleshooting\",\"parameter_name\":\"field4\",\"parameter_value\":\"Hosting Environment Troubleshooting\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Monitoring\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Monitoring\",\"form_hash\":\"m5pom8z0qy59rm\"}],\"ui_strings\":{\"cdn.maxcdn.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.maxcdn.signUpAndSave.description\":\"MaxCDN is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!\",\"cdn.stackpath.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.stackpath.signUpAndSave.description\":\"StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now and save!\",\"cdn.stackpath2.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.stackpath2.signUpAndSave.description\":\"StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!\",\"minify.general.header\":\"Reduce load time by decreasing the size and number of <acronym title=\'Cascading Style Sheet\'>CSS<\\/acronym> and <acronym title=\'JavaScript\'>JS<\\/acronym> files. Automatically remove unncessary data from <acronym title=\'Cascading Style Sheet\'>CSS<\\/acronym>, <acronym title=\'JavaScript\'>JS<\\/acronym>, feed, page and post <acronym title=\'Hypertext Markup Language\'>HTML<\\/acronym>.\",\"newrelic.general.header\":\"New Relic may not be installed or not active on this server. <a href=\'%s\' target=\'_blank\'>Sign up for a (free) account<\\/a>. Visit <a href=\'%s\' target=\'_blank\'>New Relic<\\/a> for installation instructions.\",\"reverseproxy.general.header\":\"A reverse proxy adds scale to an server by handling requests before WordPress does. Purge settings are set on the <a href=\'%s\'>Page Cache settings<\\/a> page and <a href=\'%s\'>Browser Cache settings<\\/a> are set on the browser cache settings page.\",\"cdnfsd.general.header\":\"Host the entire website with your compatible <acronym title=\'Content Delivery Network\'>CDN<\\/acronym> provider to reduce page load time.\",\"cdn.general.header\":\"Host static files with your <acronym title=\'Content Delivery Network\'>CDN<\\/acronym> to reduce page load time.\",\"cdn.stackpath.widget.existing\":\"If you\'re an existing StackPath customer, enable <acronym title=\'Content Delivery Network\'>CDN<\\/acronym> and:\",\"cdn.stackpath2.widget.existing\":\"If you\'re an existing StackPath customer, enable <acronym title=\'Content Delivery Network\'>CDN<\\/acronym> and:\",\"cdn.stackpath2.widget.works_magically\":\"StackPath works magically with W3 Total Cache.\",\"cdn.stackpath.widget.header\":\"Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (<acronym title=\'Content Delivery Network\'>CDN<\\/acronym>) service to your site.\",\"cdn.stackpath2.widget.header\":\"Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (<acronym title=\'Content Delivery Network\'>CDN<\\/acronym>) service to your site.\"}},\"expires\":1662428864}','no'),(2316,'w3tc_browsercache_flush_timestamp','27096','yes'),(2317,'w3tc_setupguide_completed','1636625336','no'),(2337,'w3tc_minify','{\"331c9.js\":[\"wp-content\\/plugins\\/wordfence\\/js\\/wfi18n.1634562195.js\"],\"b8a70.js\":[\"wp-content\\/plugins\\/wordfence\\/js\\/admin.ajaxWatcher.1634562195.js\"],\"195f8.js\":[\"wp-includes\\/js\\/hoverintent-js.min.js\",\"wp-includes\\/js\\/admin-bar.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.ui.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/core.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/main.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\",\"wp-includes\\/js\\/wp-embed.min.js\"],\"37929.css\":[\"wp-includes\\/css\\/dashicons.min.css\",\"wp-includes\\/css\\/admin-bar.min.css\"],\"08809.css\":[\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"wp-content\\/plugins\\/wordfence\\/css\\/wordfenceBox.1634562195.css\"],\"c6e1d.css\":[\"wp-content\\/themes\\/fresco\\/assets\\/css\\/main.css\"],\"72c46.js\":[\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.ui.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/core.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/main.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\",\"wp-includes\\/js\\/wp-embed.min.js\"],\"a5ff7.css\":[\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\"],\"56a7b.js\":[\"wp-includes\\/js\\/hoverintent-js.min.js\",\"wp-includes\\/js\\/admin-bar.min.js\"],\"d0515.js\":[\"wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js\",\"wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js\",\"wp-includes\\/js\\/dist\\/dom-ready.min.js\",\"wp-includes\\/js\\/dist\\/hooks.min.js\",\"wp-includes\\/js\\/dist\\/i18n.min.js\"],\"8a4c7.js\":[\"wp-includes\\/js\\/dist\\/a11y.min.js\",\"wp-includes\\/js\\/underscore.min.js\",\"wp-includes\\/js\\/customize-base.min.js\",\"wp-includes\\/js\\/customize-preview.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.ui.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/core.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/main.js\"],\"864c2.js\":[\"wp-includes\\/js\\/mediaelement\\/mediaelement-and-player.min.js\",\"wp-includes\\/js\\/mediaelement\\/mediaelement-migrate.min.js\"],\"b0646.js\":[\"wp-includes\\/js\\/mediaelement\\/wp-mediaelement.min.js\",\"wp-includes\\/js\\/mediaelement\\/renderers\\/vimeo.min.js\"],\"9314e.js\":[\"wp-includes\\/js\\/wp-util.min.js\",\"wp-includes\\/js\\/backbone.min.js\",\"wp-includes\\/js\\/mediaelement\\/wp-playlist.min.js\",\"wp-includes\\/js\\/customize-selective-refresh.min.js\",\"wp-includes\\/js\\/customize-preview-widgets.min.js\",\"wp-includes\\/js\\/customize-preview-nav-menus.min.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\",\"wp-includes\\/js\\/wp-embed.min.js\"],\"97667.css\":[\"wp-includes\\/css\\/dashicons.min.css\",\"wp-includes\\/css\\/customize-preview.min.css\",\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"wp-content\\/plugins\\/wordfence\\/css\\/wordfenceBox.1634562195.css\"],\"bb45e.css\":[\"wp-content\\/themes\\/fresco\\/assets\\/css\\/main.css\",\"wp-includes\\/js\\/mediaelement\\/mediaelementplayer-legacy.min.css\",\"wp-includes\\/js\\/mediaelement\\/wp-mediaelement.min.css\"],\"46f0e.js\":[\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.ui.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/core.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/main.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\"],\"468c6.js\":[\"wp-includes\\/js\\/hoverintent-js.min.js\",\"wp-includes\\/js\\/admin-bar.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/1velocity.ui.min.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/core.js\",\"wp-content\\/themes\\/fresco\\/assets\\/js\\/main.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\"],\"f6015.css\":[\"wp-content\\/plugins\\/wordfence\\/css\\/wordfenceBox.1634562195.css\"],\"6f094.js\":[\"wp-includes\\/js\\/wp-util.min.js\",\"wp-includes\\/js\\/backbone.min.js\",\"wp-includes\\/js\\/mediaelement\\/wp-playlist.min.js\",\"wp-includes\\/js\\/customize-selective-refresh.min.js\",\"wp-includes\\/js\\/customize-preview-widgets.min.js\",\"wp-includes\\/js\\/customize-preview-nav-menus.min.js\",\"wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/smush-lazy-load.min.js\"],\"935cc.css\":[\"wp-includes\\/css\\/dashicons.min.css\",\"wp-includes\\/css\\/customize-preview.min.css\",\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\"],\"d7cb9.css\":[\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"wp-includes\\/css\\/classic-themes.min.css\"],\"ab4e0.js\":[\"wp-content\\/plugins\\/wordfence\\/js\\/wfi18n.1695657196.js\"],\"e9bca.js\":[\"wp-content\\/plugins\\/wordfence\\/js\\/admin.ajaxWatcher.1695657196.js\"],\"96f56.css\":[\"wp-content\\/plugins\\/wordfence\\/css\\/wordfenceBox.1695657196.css\"]}','no'),(2474,'user_count','3','no'),(2475,'db_upgraded','','yes'),(4202,'wordfence_syncAttackDataAttempts','0','no'),(4203,'wordfence_syncingAttackData','0','no'),(4204,'wordfence_lastSyncAttackData','1695314052','no'),(14914,'_transient_timeout_wflginfl_00000000000000000000ffff893b7d4a','1691798153','no'),(14915,'_transient_wflginfl_00000000000000000000ffff893b7d4a','1','no'),(14935,'_transient_timeout_wflginfl_00000000000000000000ffffadeca80a','1691826066','no'),(14936,'_transient_wflginfl_00000000000000000000ffffadeca80a','2','no'),(14970,'_transient_timeout_wflginfl_00000000000000000000ffff33c3eb52','1691889470','no'),(14971,'_transient_wflginfl_00000000000000000000ffff33c3eb52','1','no'),(15108,'_transient_timeout_wflginfl_00000000000000000000ffff4246aa98','1692153002','no'),(15109,'_transient_wflginfl_00000000000000000000ffff4246aa98','2','no'),(15155,'_transient_timeout_wflginfl_00000000000000000000ffff33263480','1692412509','no'),(15156,'_transient_wflginfl_00000000000000000000ffff33263480','1','no'),(15157,'_transient_timeout_wflginfl_00000000000000000000ffffd5af428a','1692450990','no'),(15158,'_transient_wflginfl_00000000000000000000ffffd5af428a','1','no'),(15159,'_transient_timeout_wflginfl_00000000000000000000ffff44b29169','1692624963','no'),(15160,'_transient_wflginfl_00000000000000000000ffff44b29169','1','no'),(15161,'_transient_timeout_wflginfl_00000000000000000000ffff452b8ba5','1692640414','no'),(15162,'_transient_wflginfl_00000000000000000000ffff452b8ba5','1','no'),(15165,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b1ad1','1693570119','no'),(15166,'_transient_wflginfl_00000000000000000000ffff8b3b1ad1','1','no'),(15167,'_transient_timeout_wflginfl_00000000000000000000ffff78186dc7','1694274122','no'),(15168,'_transient_wflginfl_00000000000000000000ffff78186dc7','1','no'),(15177,'_site_transient_timeout_browser_d9c544d0aaddfd20c051a0811f2f382d','1695040795','no'),(15178,'_site_transient_browser_d9c544d0aaddfd20c051a0811f2f382d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"112.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(15183,'_transient_timeout_wflginfl_00000000000000000000ffff4e28dbe8','1694483355','no'),(15184,'_transient_wflginfl_00000000000000000000ffff4e28dbe8','1','no'),(15185,'_transient_timeout_wflginfl_00000000000000000000ffff6a0f26ce','1694596745','no'),(15186,'_transient_wflginfl_00000000000000000000ffff6a0f26ce','1','no'),(15195,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.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-6.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.1\";s:7:\"version\";s:5:\"6.3.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1696332589;s:15:\"version_checked\";s:5:\"6.3.1\";s:12:\"translations\";a:0:{}}','no'),(15198,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1696587081','no'),(15199,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(15210,'_site_transient_timeout_browser_e67aa3dbeb858df8c9104ff079c477f2','1696590288','no'),(15211,'_site_transient_browser_e67aa3dbeb858df8c9104ff079c477f2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"114.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(15212,'_transient_timeout_w3tc.verify_plugins','1696590288','no'),(15213,'_transient_w3tc.verify_plugins','1','no'),(15490,'_transient_timeout_acf_plugin_updates','1696505360','no'),(15491,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:0:{}s:9:\"no_update\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.2.1.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20230908\";s:6:\"reason\";s:10:\"up_to_date\";}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:7:\"6.2.1.1\";}}','no'),(15628,'_transient_timeout_wflginfl_00000000000000000000ffff335bfd20','1696326021','no'),(15629,'_transient_wflginfl_00000000000000000000ffff335bfd20','2','no'),(15640,'_transient_timeout_wflginfl_00000000000000000000ffff4e874d84','1696330620','no'),(15641,'_transient_wflginfl_00000000000000000000ffff4e874d84','1','no'),(15686,'_site_transient_timeout_browser_855abe33f610755c8e35f3ba0e85948b','1696934266','no'),(15687,'_site_transient_browser_855abe33f610755c8e35f3ba0e85948b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"110.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(15690,'can_compress_scripts','0','yes'),(15691,'_site_transient_timeout_available_translations','1696340776','no'),(15692,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 09:45:59\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-26 18:08:30\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-08 13:02:24\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-10-01 07:35:27\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-08 07:14:12\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 09:54:31\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-19 11:54:24\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:29:34\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:32:34\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 11:25:18\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:57:23\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-20 08:57:43\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 01:50:26\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-22 13:44:03\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 02:13:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 14:12:31\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 09:27:17\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 13:15:12\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-29 11:14:24\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 15:42:01\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-13 12:53:57\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-26 13:43:14\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-20 23:35:55\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-26 18:04:43\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-05 16:40:26\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 09:35:55\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-10-01 09:12:30\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-15 22:08:09\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-20 05:57:36\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-13 00:53:29\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 20:59:19\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-07 16:18:28\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 07:05:22\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-10-02 14:53:49\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-22 15:33:33\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 07:40:28\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:56:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-10 16:26:11\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 11:01:53\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:22:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 12:06:40\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-28 12:14:59\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-15 10:53:44\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-10-02 16:07:57\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-19 11:54:52\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-26 16:47:48\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:28:12\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-10-02 19:10:33\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 22:20:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 16:27:09\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(15693,'_transient_timeout_wflginfl_00000000000000000000ffff905b71e5','1696345401','no'),(15694,'_transient_wflginfl_00000000000000000000ffff905b71e5','1','no'),(15700,'_transient_timeout_wfcredentialstatus_1','1696335715','no'),(15701,'_transient_wfcredentialstatus_1','06e11d8c7812ebaba341f5478db8c6c71ffbc36fd5c6b6231445483afa6b62366','no'),(15702,'_transient_timeout_online_users','1696334292','no'),(15703,'_transient_online_users','a:1:{i:0;a:6:{s:7:\"user_id\";i:1;s:10:\"user_login\";s:12:\"phases_admin\";s:10:\"user_email\";s:24:\"sreeja.vijayan@phases.io\";s:15:\"user_registered\";s:19:\"2021-10-28 07:14:13\";s:13:\"last_activity\";i:1696332116;s:11:\"remote_addr\";s:13:\"103.135.95.38\";}}','no'),(15704,'_site_transient_timeout_theme_roots','1696333919','no'),(15705,'_site_transient_theme_roots','a:4:{s:6:\"fresco\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(15706,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1696332580;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.14.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.14.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:25:\"sucuri-scanner/sucuri.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/sucuri-scanner\";s:4:\"slug\";s:14:\"sucuri-scanner\";s:6:\"plugin\";s:25:\"sucuri-scanner/sucuri.php\";s:11:\"new_version\";s:6:\"1.8.39\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sucuri-scanner/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.39.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-256x256.png?rev=2875755\";s:2:\"1x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-128x128.png?rev=2875755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/sucuri-scanner/assets/banner-772x250.png?rev=2875755\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";}s:33:\"w3-total-cache/w3-total-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/w3-total-cache\";s:4:\"slug\";s:14:\"w3-total-cache\";s:6:\"plugin\";s:33:\"w3-total-cache/w3-total-cache.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/w3-total-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/w3-total-cache.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806\";s:2:\"1x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-128x128.png?rev=1041806\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"7.10.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.7.10.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":12:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.2.1.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"6.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20230908\";s:6:\"reason\";s:10:\"up_to_date\";}}s:7:\"checked\";a:6:{s:34:\"advanced-custom-fields-pro/acf.php\";s:7:\"6.2.1.1\";s:32:\"duplicate-page/duplicatepage.php\";s:5:\"4.5.3\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.14.2\";s:25:\"sucuri-scanner/sucuri.php\";s:6:\"1.8.39\";s:33:\"w3-total-cache/w3-total-cache.php\";s:5:\"2.5.0\";s:23:\"wordfence/wordfence.php\";s:6:\"7.10.4\";}}','no'),(15709,'_transient_doing_cron','1696332559.4554200172424316406250','yes'),(15710,'wp-smush-show_upgrade_modal','1','no'),(15711,'wp_smush_global_stats','a:1:{s:25:\"rescan_required_timestamp\";i:1696332559;}','no'),(15712,'wp_smush_image_sizes_state','a:2:{s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";b:1;}s:6:\"medium\";a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;}s:5:\"large\";a:3:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;}s:9:\"1536x1536\";a:3:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";b:0;}s:9:\"2048x2048\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";b:0;}s:14:\"post-thumbnail\";a:3:{s:5:\"width\";i:850;s:6:\"height\";i:266;s:4:\"crop\";b:1;}s:23:\"video-gallery-thumbnail\";a:3:{s:5:\"width\";i:630;s:6:\"height\";i:282;s:4:\"crop\";b:1;}s:12:\"medium_large\";a:2:{s:5:\"width\";i:768;s:6:\"height\";i:0;}}s:4:\"hash\";i:62510011923;}','yes'),(15713,'_transient_timeout_wp_smush_skip_image_sizes_recheck','1696336159','no'),(15714,'_transient_wp_smush_skip_image_sizes_recheck','1','no'),(15715,'wp_smush_pre_3_12_6_site','0','no'),(15716,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1696332580;s:7:\"checked\";a:4:{s:6:\"fresco\";s:5:\"1.0.0\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no');
/*!40000 ALTER TABLE `fresco_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fresco_postmeta`
--
DROP TABLE IF EXISTS `fresco_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fresco_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28570 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fresco_postmeta`
--
LOCK TABLES `fresco_postmeta` WRITE;
/*!40000 ALTER TABLE `fresco_postmeta` DISABLE KEYS */;
INSERT INTO `fresco_postmeta` VALUES (13,13,'_edit_last','1'),(14,13,'_edit_lock','1659699300:1'),(15,69,'_edit_last','1'),(16,69,'_edit_lock','1659704320:1'),(17,83,'_edit_last','1'),(18,83,'_edit_lock','1659700182:1'),(19,95,'_edit_lock','1659713685:1'),(20,95,'_edit_last','1'),(21,124,'_edit_lock','1659704899:1'),(22,124,'_edit_last','1'),(24,135,'_edit_last','1'),(25,135,'_edit_lock','1659700144:1'),(29,138,'_edit_last','2'),(30,138,'_edit_lock','1659758081:2'),(31,138,'_wp_page_template','page-templates/home.php'),(32,138,'home_slider','4'),(33,138,'_home_slider','field_617a896350163'),(34,138,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(35,138,'_home_modules','field_617a8cc2b60e7'),(36,139,'home_slider',''),(37,139,'_home_slider','field_617a896350163'),(38,139,'home_modules',''),(39,139,'_home_modules','field_617a8cc2b60e7'),(40,140,'_edit_last','1'),(41,140,'_edit_lock','1635752608:1'),(42,138,'page_choose_language','1'),(43,138,'_page_choose_language','field_617be5fe2198a'),(44,138,'default_full_width_text_content',''),(45,138,'_default_full_width_text_content','field_617bc7ea89569'),(46,139,'page_choose_language','1'),(47,139,'_page_choose_language','field_617be5fe2198a'),(48,139,'default_full_width_text_content',''),(49,139,'_default_full_width_text_content','field_617bc7ea89569'),(50,142,'_wp_attached_file','2021/11/logo.png'),(51,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:82;s:4:\"file\";s:16:\"2021/11/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x82.png\";s:5:\"width\";i:150;s:6:\"height\";i:82;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:{}}}'),(52,142,'_wp_attachment_image_alt','Fresco site logo'),(53,143,'_wp_attached_file','2021/11/main-page-1.jpg'),(54,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:23:\"2021/11/main-page-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"main-page-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:24:\"main-page-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:23:\"main-page-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:23:\"main-page-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"main-page-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"main-page-1-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:23:\"main-page-1-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,143,'_wp_attachment_image_alt','main page 1'),(56,138,'home_slider_0_home_slider_background_image','143'),(57,138,'_home_slider_0_home_slider_background_image','field_617a899650164'),(58,138,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(59,138,'_home_slider_0_home_slider_title','field_617a89b150165'),(60,138,'home_slider_0_home_slider_enable_cta','0'),(61,138,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(62,144,'home_slider','1'),(63,144,'_home_slider','field_617a896350163'),(64,144,'home_modules',''),(65,144,'_home_modules','field_617a8cc2b60e7'),(66,144,'page_choose_language','1'),(67,144,'_page_choose_language','field_617be5fe2198a'),(68,144,'default_full_width_text_content',''),(69,144,'_default_full_width_text_content','field_617bc7ea89569'),(70,144,'home_slider_0_home_slider_background_image','143'),(71,144,'_home_slider_0_home_slider_background_image','field_617a899650164'),(72,144,'home_slider_0_home_slider_title',''),(73,144,'_home_slider_0_home_slider_title','field_617a89b150165'),(74,144,'home_slider_0_home_slider_enable_cta','0'),(75,144,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(76,138,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(77,138,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(78,138,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:40:\"https://www.oneoahu.org/safe-access-oahu\";s:6:\"target\";s:6:\"_blank\";}'),(79,138,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(80,145,'home_slider','1'),(81,145,'_home_slider','field_617a896350163'),(82,145,'home_modules',''),(83,145,'_home_modules','field_617a8cc2b60e7'),(84,145,'page_choose_language','1'),(85,145,'_page_choose_language','field_617be5fe2198a'),(86,145,'default_full_width_text_content',''),(87,145,'_default_full_width_text_content','field_617bc7ea89569'),(88,145,'home_slider_0_home_slider_background_image','143'),(89,145,'_home_slider_0_home_slider_background_image','field_617a899650164'),(90,145,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(91,145,'_home_slider_0_home_slider_title','field_617a89b150165'),(92,145,'home_slider_0_home_slider_enable_cta','1'),(93,145,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(94,145,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(95,145,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(96,145,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:6:\"_blank\";}'),(97,145,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(98,146,'home_slider','1'),(99,146,'_home_slider','field_617a896350163'),(100,146,'home_modules',''),(101,146,'_home_modules','field_617a8cc2b60e7'),(102,146,'page_choose_language','1'),(103,146,'_page_choose_language','field_617be5fe2198a'),(104,146,'default_full_width_text_content',''),(105,146,'_default_full_width_text_content','field_617bc7ea89569'),(106,146,'home_slider_0_home_slider_background_image','143'),(107,146,'_home_slider_0_home_slider_background_image','field_617a899650164'),(108,146,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(109,146,'_home_slider_0_home_slider_title','field_617a89b150165'),(110,146,'home_slider_0_home_slider_enable_cta','1'),(111,146,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(112,146,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(113,146,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(114,146,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(115,146,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(116,143,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.330057889185158;s:5:\"bytes\";i:19050;s:11:\"size_before\";i:357407;s:10:\"size_after\";i:338357;s:4:\"time\";d:0.21;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.55;s:5:\"bytes\";i:964;s:11:\"size_before\";i:11274;s:10:\"size_after\";i:10310;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.93;s:5:\"bytes\";i:3736;s:11:\"size_before\";i:75708;s:10:\"size_after\";i:71972;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5;s:5:\"bytes\";i:816;s:11:\"size_before\";i:6526;s:10:\"size_after\";i:5710;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.35;s:5:\"bytes\";i:2511;s:11:\"size_before\";i:46977;s:10:\"size_after\";i:44466;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:7225;s:11:\"size_before\";i:151990;s:10:\"size_after\";i:144765;s:4:\"time\";d:0.07;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.56;s:5:\"bytes\";i:2040;s:11:\"size_before\";i:36672;s:10:\"size_after\";i:34632;s:4:\"time\";d:0.02;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.22;s:5:\"bytes\";i:1758;s:11:\"size_before\";i:28260;s:10:\"size_after\";i:26502;s:4:\"time\";d:0.01;}}}'),(117,142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.700996677740862;s:5:\"bytes\";i:1770;s:11:\"size_before\";i:12040;s:10:\"size_after\";i:10270;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.7;s:5:\"bytes\";i:1770;s:11:\"size_before\";i:12040;s:10:\"size_after\";i:10270;s:4:\"time\";d:0.03;}}}'),(118,147,'_wp_attached_file','2021/11/main-page-2-min-scaled.jpg'),(119,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:34:\"2021/11/main-page-2-min-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"main-page-2-min-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:28:\"main-page-2-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-2-min-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:\"main-page-2-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"main-page-2-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"main-page-2-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-2-min-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-2-min-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:19:\"main-page-2-min.jpg\";}'),(120,148,'_wp_attached_file','2021/11/main-page-3-min-scaled.jpg'),(121,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1784;s:4:\"file\";s:34:\"2021/11/main-page-3-min-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"main-page-3-min-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"main-page-3-min-1024x713.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-3-min-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:\"main-page-3-min-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"main-page-3-min-1536x1070.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"main-page-3-min-2048x1427.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-3-min-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:27:\"main-page-3-min-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:19:\"main-page-3-min.jpg\";}'),(122,147,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.628411876100467;s:5:\"bytes\";i:26885;s:11:\"size_before\";i:1022861;s:10:\"size_after\";i:995976;s:4:\"time\";d:0.81;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.02;s:5:\"bytes\";i:123;s:11:\"size_before\";i:12020;s:10:\"size_after\";i:11897;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.38;s:5:\"bytes\";i:2002;s:11:\"size_before\";i:84041;s:10:\"size_after\";i:82039;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.52;s:5:\"bytes\";i:34;s:11:\"size_before\";i:6532;s:10:\"size_after\";i:6498;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.67;s:5:\"bytes\";i:1431;s:11:\"size_before\";i:53588;s:10:\"size_after\";i:52157;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4;s:5:\"bytes\";i:3837;s:11:\"size_before\";i:159829;s:10:\"size_after\";i:155992;s:4:\"time\";d:0.12;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.73;s:5:\"bytes\";i:7040;s:11:\"size_before\";i:258101;s:10:\"size_after\";i:251061;s:4:\"time\";d:0.24;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.61;s:5:\"bytes\";i:1007;s:11:\"size_before\";i:38627;s:10:\"size_after\";i:37620;s:4:\"time\";d:0.02;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.68;s:5:\"bytes\";i:851;s:11:\"size_before\";i:31705;s:10:\"size_after\";i:30854;s:4:\"time\";d:0.11;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79;s:5:\"bytes\";i:10560;s:11:\"size_before\";i:378418;s:10:\"size_after\";i:367858;s:4:\"time\";d:0.23;}}}'),(123,147,'_wp_attachment_image_alt','main-page-2'),(124,148,'_wp_attachment_image_alt','main-page-3'),(125,148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.476482074947939;s:5:\"bytes\";i:67649;s:11:\"size_before\";i:1511209;s:10:\"size_after\";i:1443560;s:4:\"time\";d:0.92;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.77;s:5:\"bytes\";i:409;s:11:\"size_before\";i:14778;s:10:\"size_after\";i:14369;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19;s:5:\"bytes\";i:5204;s:11:\"size_before\";i:124192;s:10:\"size_after\";i:118988;s:4:\"time\";d:0.1;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.05;s:5:\"bytes\";i:150;s:11:\"size_before\";i:7329;s:10:\"size_after\";i:7179;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.15;s:5:\"bytes\";i:3143;s:11:\"size_before\";i:75824;s:10:\"size_after\";i:72681;s:4:\"time\";d:0.09;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54;s:5:\"bytes\";i:11055;s:11:\"size_before\";i:243522;s:10:\"size_after\";i:232467;s:4:\"time\";d:0.07;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.59;s:5:\"bytes\";i:17871;s:11:\"size_before\";i:389488;s:10:\"size_after\";i:371617;s:4:\"time\";d:0.35;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86;s:5:\"bytes\";i:2814;s:11:\"size_before\";i:57845;s:10:\"size_after\";i:55031;s:4:\"time\";d:0.04;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.48;s:5:\"bytes\";i:1961;s:11:\"size_before\";i:43759;s:10:\"size_after\";i:41798;s:4:\"time\";d:0.1;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.52;s:5:\"bytes\";i:25042;s:11:\"size_before\";i:554472;s:10:\"size_after\";i:529430;s:4:\"time\";d:0.15;}}}'),(138,149,'home_slider','3'),(139,149,'_home_slider','field_617a896350163'),(140,149,'home_modules',''),(141,149,'_home_modules','field_617a8cc2b60e7'),(142,149,'page_choose_language','1'),(143,149,'_page_choose_language','field_617be5fe2198a'),(144,149,'default_full_width_text_content',''),(145,149,'_default_full_width_text_content','field_617bc7ea89569'),(146,149,'home_slider_0_home_slider_background_image','143'),(147,149,'_home_slider_0_home_slider_background_image','field_617a899650164'),(148,149,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(149,149,'_home_slider_0_home_slider_title','field_617a89b150165'),(150,149,'home_slider_0_home_slider_enable_cta','1'),(151,149,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(152,149,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(153,149,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(154,149,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(155,149,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(156,149,'home_slider_1_home_slider_background_image','147'),(157,149,'_home_slider_1_home_slider_background_image','field_617a899650164'),(158,149,'home_slider_1_home_slider_title',''),(159,149,'_home_slider_1_home_slider_title','field_617a89b150165'),(160,149,'home_slider_1_home_slider_enable_cta','0'),(161,149,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(162,149,'home_slider_2_home_slider_background_image','148'),(163,149,'_home_slider_2_home_slider_background_image','field_617a899650164'),(164,149,'home_slider_2_home_slider_title',''),(165,149,'_home_slider_2_home_slider_title','field_617a89b150165'),(166,149,'home_slider_2_home_slider_enable_cta','0'),(167,149,'_home_slider_2_home_slider_enable_cta','field_617a89d650166'),(168,150,'home_slider','2'),(169,150,'_home_slider','field_617a896350163'),(170,150,'home_modules',''),(171,150,'_home_modules','field_617a8cc2b60e7'),(172,150,'page_choose_language','1'),(173,150,'_page_choose_language','field_617be5fe2198a'),(174,150,'default_full_width_text_content',''),(175,150,'_default_full_width_text_content','field_617bc7ea89569'),(176,150,'home_slider_0_home_slider_background_image','143'),(177,150,'_home_slider_0_home_slider_background_image','field_617a899650164'),(178,150,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(179,150,'_home_slider_0_home_slider_title','field_617a89b150165'),(180,150,'home_slider_0_home_slider_enable_cta','1'),(181,150,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(182,150,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(183,150,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(184,150,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(185,150,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(186,150,'home_slider_1_home_slider_background_image','147'),(187,150,'_home_slider_1_home_slider_background_image','field_617a899650164'),(188,150,'home_slider_1_home_slider_title',''),(189,150,'_home_slider_1_home_slider_title','field_617a89b150165'),(190,150,'home_slider_1_home_slider_enable_cta','0'),(191,150,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(192,151,'home_slider','1'),(193,151,'_home_slider','field_617a896350163'),(194,151,'home_modules',''),(195,151,'_home_modules','field_617a8cc2b60e7'),(196,151,'page_choose_language','1'),(197,151,'_page_choose_language','field_617be5fe2198a'),(198,151,'default_full_width_text_content',''),(199,151,'_default_full_width_text_content','field_617bc7ea89569'),(200,151,'home_slider_0_home_slider_background_image','143'),(201,151,'_home_slider_0_home_slider_background_image','field_617a899650164'),(202,151,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(203,151,'_home_slider_0_home_slider_title','field_617a89b150165'),(204,151,'home_slider_0_home_slider_enable_cta','1'),(205,151,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(206,151,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(207,151,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(208,151,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(209,151,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(210,138,'home_slider_1_home_slider_background_image','292'),(211,138,'_home_slider_1_home_slider_background_image','field_617a899650164'),(212,138,'home_slider_1_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(213,138,'_home_slider_1_home_slider_title','field_617a89b150165'),(214,138,'home_slider_1_home_slider_enable_cta','0'),(215,138,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(216,152,'home_slider','2'),(217,152,'_home_slider','field_617a896350163'),(218,152,'home_modules',''),(219,152,'_home_modules','field_617a8cc2b60e7'),(220,152,'page_choose_language','1'),(221,152,'_page_choose_language','field_617be5fe2198a'),(222,152,'default_full_width_text_content',''),(223,152,'_default_full_width_text_content','field_617bc7ea89569'),(224,152,'home_slider_0_home_slider_background_image','143'),(225,152,'_home_slider_0_home_slider_background_image','field_617a899650164'),(226,152,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(227,152,'_home_slider_0_home_slider_title','field_617a89b150165'),(228,152,'home_slider_0_home_slider_enable_cta','1'),(229,152,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(230,152,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(231,152,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(232,152,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(233,152,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(234,152,'home_slider_1_home_slider_background_image','147'),(235,152,'_home_slider_1_home_slider_background_image','field_617a899650164'),(236,152,'home_slider_1_home_slider_title',''),(237,152,'_home_slider_1_home_slider_title','field_617a89b150165'),(238,152,'home_slider_1_home_slider_enable_cta','0'),(239,152,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(240,153,'_wp_attached_file','2021/11/00213-min-scaled.jpg'),(241,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2021/11/00213-min-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"00213-min-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:22:\"00213-min-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"00213-min-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:\"00213-min-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"00213-min-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"00213-min-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"00213-min-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:21:\"00213-min-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:13:\"00213-min.jpg\";}'),(242,153,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0013442092078330737;s:5:\"bytes\";i:11;s:11:\"size_before\";i:818325;s:10:\"size_after\";i:818314;s:4:\"time\";d:0.4;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.09;s:5:\"bytes\";i:11;s:11:\"size_before\";i:12151;s:10:\"size_after\";i:12140;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:70732;s:10:\"size_after\";i:70732;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5424;s:10:\"size_after\";i:5424;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83405;s:10:\"size_after\";i:83405;s:4:\"time\";d:0.05;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:128274;s:10:\"size_after\";i:128274;s:4:\"time\";d:0.04;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:200758;s:10:\"size_after\";i:200758;s:4:\"time\";d:0.1;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13097;s:10:\"size_after\";i:13097;s:4:\"time\";d:0.02;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13675;s:10:\"size_after\";i:13675;s:4:\"time\";d:0.01;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:290809;s:10:\"size_after\";i:290809;s:4:\"time\";d:0.13;}}}'),(243,153,'_wp_attachment_image_alt','table lamp'),(250,154,'home_slider','2'),(251,154,'_home_slider','field_617a896350163'),(252,154,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(253,154,'_home_modules','field_617a8cc2b60e7'),(254,154,'page_choose_language','1'),(255,154,'_page_choose_language','field_617be5fe2198a'),(256,154,'default_full_width_text_content',''),(257,154,'_default_full_width_text_content','field_617bc7ea89569'),(258,154,'home_slider_0_home_slider_background_image','143'),(259,154,'_home_slider_0_home_slider_background_image','field_617a899650164'),(260,154,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(261,154,'_home_slider_0_home_slider_title','field_617a89b150165'),(262,154,'home_slider_0_home_slider_enable_cta','1'),(263,154,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(264,154,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(265,154,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(266,154,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(267,154,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(268,154,'home_slider_1_home_slider_background_image','147'),(269,154,'_home_slider_1_home_slider_background_image','field_617a899650164'),(270,154,'home_slider_1_home_slider_title',''),(271,154,'_home_slider_1_home_slider_title','field_617a89b150165'),(272,154,'home_slider_1_home_slider_enable_cta','0'),(273,154,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(274,154,'home_modules_0_home_two_column_with_image_and_text_image','153'),(275,154,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(276,154,'home_modules_0_home_two_column_with_image_and_text_title',''),(277,154,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(278,154,'home_modules_0_home_two_column_with_image_and_text_desc',''),(279,154,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(280,155,'home_slider','2'),(281,155,'_home_slider','field_617a896350163'),(282,155,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(283,155,'_home_modules','field_617a8cc2b60e7'),(284,155,'page_choose_language','1'),(285,155,'_page_choose_language','field_617be5fe2198a'),(286,155,'default_full_width_text_content',''),(287,155,'_default_full_width_text_content','field_617bc7ea89569'),(288,155,'home_slider_0_home_slider_background_image','143'),(289,155,'_home_slider_0_home_slider_background_image','field_617a899650164'),(290,155,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(291,155,'_home_slider_0_home_slider_title','field_617a89b150165'),(292,155,'home_slider_0_home_slider_enable_cta','1'),(293,155,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(294,155,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(295,155,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(296,155,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(297,155,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(298,155,'home_slider_1_home_slider_background_image','147'),(299,155,'_home_slider_1_home_slider_background_image','field_617a899650164'),(300,155,'home_slider_1_home_slider_title',''),(301,155,'_home_slider_1_home_slider_title','field_617a89b150165'),(302,155,'home_slider_1_home_slider_enable_cta','0'),(303,155,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(304,155,'home_modules_0_home_two_column_with_image_and_text_image','153'),(305,155,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(306,155,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(307,155,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(308,155,'home_modules_0_home_two_column_with_image_and_text_desc',''),(309,155,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(310,156,'home_slider','2'),(311,156,'_home_slider','field_617a896350163'),(312,156,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(313,156,'_home_modules','field_617a8cc2b60e7'),(314,156,'page_choose_language','1'),(315,156,'_page_choose_language','field_617be5fe2198a'),(316,156,'default_full_width_text_content',''),(317,156,'_default_full_width_text_content','field_617bc7ea89569'),(318,156,'home_slider_0_home_slider_background_image','143'),(319,156,'_home_slider_0_home_slider_background_image','field_617a899650164'),(320,156,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(321,156,'_home_slider_0_home_slider_title','field_617a89b150165'),(322,156,'home_slider_0_home_slider_enable_cta','1'),(323,156,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(324,156,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(325,156,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(326,156,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(327,156,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(328,156,'home_slider_1_home_slider_background_image','147'),(329,156,'_home_slider_1_home_slider_background_image','field_617a899650164'),(330,156,'home_slider_1_home_slider_title',''),(331,156,'_home_slider_1_home_slider_title','field_617a89b150165'),(332,156,'home_slider_1_home_slider_enable_cta','0'),(333,156,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(334,156,'home_modules_0_home_two_column_with_image_and_text_image',''),(335,156,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(336,156,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(337,156,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(338,156,'home_modules_0_home_two_column_with_image_and_text_desc',''),(339,156,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(340,157,'home_slider','2'),(341,157,'_home_slider','field_617a896350163'),(342,157,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(343,157,'_home_modules','field_617a8cc2b60e7'),(344,157,'page_choose_language','1'),(345,157,'_page_choose_language','field_617be5fe2198a'),(346,157,'default_full_width_text_content',''),(347,157,'_default_full_width_text_content','field_617bc7ea89569'),(348,157,'home_slider_0_home_slider_background_image','143'),(349,157,'_home_slider_0_home_slider_background_image','field_617a899650164'),(350,157,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(351,157,'_home_slider_0_home_slider_title','field_617a89b150165'),(352,157,'home_slider_0_home_slider_enable_cta','1'),(353,157,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(354,157,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(355,157,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(356,157,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(357,157,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(358,157,'home_slider_1_home_slider_background_image','147'),(359,157,'_home_slider_1_home_slider_background_image','field_617a899650164'),(360,157,'home_slider_1_home_slider_title',''),(361,157,'_home_slider_1_home_slider_title','field_617a89b150165'),(362,157,'home_slider_1_home_slider_enable_cta','0'),(363,157,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(364,157,'home_modules_0_home_two_column_with_image_and_text_image',''),(365,157,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(366,157,'home_modules_0_home_two_column_with_image_and_text_title',''),(367,157,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(368,157,'home_modules_0_home_two_column_with_image_and_text_desc',''),(369,157,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(370,158,'home_slider','2'),(371,158,'_home_slider','field_617a896350163'),(372,158,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(373,158,'_home_modules','field_617a8cc2b60e7'),(374,158,'page_choose_language','1'),(375,158,'_page_choose_language','field_617be5fe2198a'),(376,158,'default_full_width_text_content',''),(377,158,'_default_full_width_text_content','field_617bc7ea89569'),(378,158,'home_slider_0_home_slider_background_image','143'),(379,158,'_home_slider_0_home_slider_background_image','field_617a899650164'),(380,158,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(381,158,'_home_slider_0_home_slider_title','field_617a89b150165'),(382,158,'home_slider_0_home_slider_enable_cta','1'),(383,158,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(384,158,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(385,158,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(386,158,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(387,158,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(388,158,'home_slider_1_home_slider_background_image','147'),(389,158,'_home_slider_1_home_slider_background_image','field_617a899650164'),(390,158,'home_slider_1_home_slider_title',''),(391,158,'_home_slider_1_home_slider_title','field_617a89b150165'),(392,158,'home_slider_1_home_slider_enable_cta','0'),(393,158,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(394,158,'home_modules_0_home_two_column_with_image_and_text_image','153'),(395,158,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(396,158,'home_modules_0_home_two_column_with_image_and_text_title',''),(397,158,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(398,158,'home_modules_0_home_two_column_with_image_and_text_desc',''),(399,158,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(400,159,'home_slider','2'),(401,159,'_home_slider','field_617a896350163'),(402,159,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(403,159,'_home_modules','field_617a8cc2b60e7'),(404,159,'page_choose_language','1'),(405,159,'_page_choose_language','field_617be5fe2198a'),(406,159,'default_full_width_text_content',''),(407,159,'_default_full_width_text_content','field_617bc7ea89569'),(408,159,'home_slider_0_home_slider_background_image','143'),(409,159,'_home_slider_0_home_slider_background_image','field_617a899650164'),(410,159,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(411,159,'_home_slider_0_home_slider_title','field_617a89b150165'),(412,159,'home_slider_0_home_slider_enable_cta','1'),(413,159,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(414,159,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(415,159,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(416,159,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(417,159,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(418,159,'home_slider_1_home_slider_background_image','147'),(419,159,'_home_slider_1_home_slider_background_image','field_617a899650164'),(420,159,'home_slider_1_home_slider_title',''),(421,159,'_home_slider_1_home_slider_title','field_617a89b150165'),(422,159,'home_slider_1_home_slider_enable_cta','0'),(423,159,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(424,159,'home_modules_0_home_two_column_with_image_and_text_image','153'),(425,159,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(426,159,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(427,159,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(428,159,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(429,159,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(447,162,'home_slider','2'),(448,162,'_home_slider','field_617a896350163'),(449,162,'home_modules','a:2:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";}'),(450,162,'_home_modules','field_617a8cc2b60e7'),(451,162,'page_choose_language','1'),(452,162,'_page_choose_language','field_617be5fe2198a'),(453,162,'default_full_width_text_content',''),(454,162,'_default_full_width_text_content','field_617bc7ea89569'),(455,162,'home_slider_0_home_slider_background_image','143'),(456,162,'_home_slider_0_home_slider_background_image','field_617a899650164'),(457,162,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(458,162,'_home_slider_0_home_slider_title','field_617a89b150165'),(459,162,'home_slider_0_home_slider_enable_cta','1'),(460,162,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(461,162,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(462,162,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(463,162,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(464,162,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(465,162,'home_slider_1_home_slider_background_image','147'),(466,162,'_home_slider_1_home_slider_background_image','field_617a899650164'),(467,162,'home_slider_1_home_slider_title',''),(468,162,'_home_slider_1_home_slider_title','field_617a89b150165'),(469,162,'home_slider_1_home_slider_enable_cta','0'),(470,162,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(471,162,'home_modules_0_home_two_column_with_image_and_text_image','153'),(472,162,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(473,162,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(474,162,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(475,162,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(476,162,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(477,162,'home_modules_1_home_our_menus_enable_section','1'),(478,162,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(479,163,'home_slider','2'),(480,163,'_home_slider','field_617a896350163'),(481,163,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(482,163,'_home_modules','field_617a8cc2b60e7'),(483,163,'page_choose_language','1'),(484,163,'_page_choose_language','field_617be5fe2198a'),(485,163,'default_full_width_text_content',''),(486,163,'_default_full_width_text_content','field_617bc7ea89569'),(487,163,'home_slider_0_home_slider_background_image','143'),(488,163,'_home_slider_0_home_slider_background_image','field_617a899650164'),(489,163,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(490,163,'_home_slider_0_home_slider_title','field_617a89b150165'),(491,163,'home_slider_0_home_slider_enable_cta','1'),(492,163,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(493,163,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(494,163,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(495,163,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(496,163,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(497,163,'home_slider_1_home_slider_background_image','147'),(498,163,'_home_slider_1_home_slider_background_image','field_617a899650164'),(499,163,'home_slider_1_home_slider_title',''),(500,163,'_home_slider_1_home_slider_title','field_617a89b150165'),(501,163,'home_slider_1_home_slider_enable_cta','0'),(502,163,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(503,163,'home_modules_0_home_two_column_with_image_and_text_image','153'),(504,163,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(505,163,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(506,163,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(507,163,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(508,163,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(509,164,'home_slider','2'),(510,164,'_home_slider','field_617a896350163'),(511,164,'home_modules',''),(512,164,'_home_modules','field_617a8cc2b60e7'),(513,164,'page_choose_language','1'),(514,164,'_page_choose_language','field_617be5fe2198a'),(515,164,'default_full_width_text_content',''),(516,164,'_default_full_width_text_content','field_617bc7ea89569'),(517,164,'home_slider_0_home_slider_background_image','143'),(518,164,'_home_slider_0_home_slider_background_image','field_617a899650164'),(519,164,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(520,164,'_home_slider_0_home_slider_title','field_617a89b150165'),(521,164,'home_slider_0_home_slider_enable_cta','1'),(522,164,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(523,164,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(524,164,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(525,164,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(526,164,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(527,164,'home_slider_1_home_slider_background_image','147'),(528,164,'_home_slider_1_home_slider_background_image','field_617a899650164'),(529,164,'home_slider_1_home_slider_title',''),(530,164,'_home_slider_1_home_slider_title','field_617a89b150165'),(531,164,'home_slider_1_home_slider_enable_cta','0'),(532,164,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(533,138,'home_modules_0_home_two_column_with_image_and_text_image','153'),(534,138,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(535,138,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(536,138,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(537,138,'home_modules_0_home_two_column_with_image_and_text_desc','<p style=\"text-align: left;\">Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village!</p>\r\n \r\n<p style=\"text-align: left;\">Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky.</p>\r\n \r\n<p style=\"text-align: left;\">The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions.</p>\r\n \r\n<p style=\"text-align: left;\">The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).</p>'),(538,138,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(539,165,'home_slider','2'),(540,165,'_home_slider','field_617a896350163'),(541,165,'home_modules','a:1:{i:0;s:35:\"home_two_column_with_image_and_text\";}'),(542,165,'_home_modules','field_617a8cc2b60e7'),(543,165,'page_choose_language','1'),(544,165,'_page_choose_language','field_617be5fe2198a'),(545,165,'default_full_width_text_content',''),(546,165,'_default_full_width_text_content','field_617bc7ea89569'),(547,165,'home_slider_0_home_slider_background_image','143'),(548,165,'_home_slider_0_home_slider_background_image','field_617a899650164'),(549,165,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(550,165,'_home_slider_0_home_slider_title','field_617a89b150165'),(551,165,'home_slider_0_home_slider_enable_cta','1'),(552,165,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(553,165,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(554,165,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(555,165,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(556,165,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(557,165,'home_slider_1_home_slider_background_image','147'),(558,165,'_home_slider_1_home_slider_background_image','field_617a899650164'),(559,165,'home_slider_1_home_slider_title',''),(560,165,'_home_slider_1_home_slider_title','field_617a89b150165'),(561,165,'home_slider_1_home_slider_enable_cta','0'),(562,165,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(563,165,'home_modules_0_home_two_column_with_image_and_text_image','153'),(564,165,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(565,165,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(566,165,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(567,165,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(568,165,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(569,138,'home_modules_1_home_our_menus_enable_section','1'),(570,138,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(571,166,'home_slider','2'),(572,166,'_home_slider','field_617a896350163'),(573,166,'home_modules','a:2:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";}'),(574,166,'_home_modules','field_617a8cc2b60e7'),(575,166,'page_choose_language','1'),(576,166,'_page_choose_language','field_617be5fe2198a'),(577,166,'default_full_width_text_content',''),(578,166,'_default_full_width_text_content','field_617bc7ea89569'),(579,166,'home_slider_0_home_slider_background_image','143'),(580,166,'_home_slider_0_home_slider_background_image','field_617a899650164'),(581,166,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(582,166,'_home_slider_0_home_slider_title','field_617a89b150165'),(583,166,'home_slider_0_home_slider_enable_cta','1'),(584,166,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(585,166,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(586,166,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(587,166,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(588,166,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(589,166,'home_slider_1_home_slider_background_image','147'),(590,166,'_home_slider_1_home_slider_background_image','field_617a899650164'),(591,166,'home_slider_1_home_slider_title',''),(592,166,'_home_slider_1_home_slider_title','field_617a89b150165'),(593,166,'home_slider_1_home_slider_enable_cta','0'),(594,166,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(595,166,'home_modules_0_home_two_column_with_image_and_text_image','153'),(596,166,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(597,166,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(598,166,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(599,166,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(600,166,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(601,166,'home_modules_1_home_our_menus_enable_section','1'),(602,166,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(603,138,'home_modules_2_home_full_width_image_and_text_slider','2'),(604,138,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(605,138,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(606,138,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(607,138,'home_modules_2_home_full_width_image_and_text_content','<p style=\"text-align: left;\">With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.</p>\r\n<p style=\"text-align: left;\">Whether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.</p>\r\n<p style=\"text-align: left;\">Reservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.</p>\r\n<p style=\"text-align: left;\">For more information please E-mail <a href=\"mailto:info@frescohawaii.com\">info@frescohawaii.com</a>.</p>'),(608,138,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(609,167,'home_slider','2'),(610,167,'_home_slider','field_617a896350163'),(611,167,'home_modules','a:3:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";}'),(612,167,'_home_modules','field_617a8cc2b60e7'),(613,167,'page_choose_language','1'),(614,167,'_page_choose_language','field_617be5fe2198a'),(615,167,'default_full_width_text_content',''),(616,167,'_default_full_width_text_content','field_617bc7ea89569'),(617,167,'home_slider_0_home_slider_background_image','143'),(618,167,'_home_slider_0_home_slider_background_image','field_617a899650164'),(619,167,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(620,167,'_home_slider_0_home_slider_title','field_617a89b150165'),(621,167,'home_slider_0_home_slider_enable_cta','1'),(622,167,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(623,167,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(624,167,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(625,167,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(626,167,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(627,167,'home_slider_1_home_slider_background_image','147'),(628,167,'_home_slider_1_home_slider_background_image','field_617a899650164'),(629,167,'home_slider_1_home_slider_title',''),(630,167,'_home_slider_1_home_slider_title','field_617a89b150165'),(631,167,'home_slider_1_home_slider_enable_cta','0'),(632,167,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(633,167,'home_modules_0_home_two_column_with_image_and_text_image','153'),(634,167,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(635,167,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(636,167,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(637,167,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(638,167,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(639,167,'home_modules_1_home_our_menus_enable_section','1'),(640,167,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(641,167,'home_modules_2_home_full_width_image_and_text_slider',''),(642,167,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(643,167,'home_modules_2_home_full_width_image_and_text_title',''),(644,167,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(645,167,'home_modules_2_home_full_width_image_and_text_content',''),(646,167,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(647,168,'_wp_attached_file','2021/11/wedding-course.2022-min-scaled.jpg'),(648,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2021/11/wedding-course.2022-min-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"wedding-course.2022-min-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:\"wedding-course.2022-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"wedding-course.2022-min-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:\"wedding-course.2022-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"wedding-course.2022-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"wedding-course.2022-min-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"wedding-course.2022-min-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:35:\"wedding-course.2022-min-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:27:\"wedding-course.2022-min.jpg\";}'),(649,168,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1194197263142152;s:5:\"bytes\";i:8982;s:11:\"size_before\";i:802380;s:10:\"size_after\";i:793398;s:4:\"time\";d:0.71;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10792;s:10:\"size_after\";i:10792;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.24;s:5:\"bytes\";i:841;s:11:\"size_before\";i:67869;s:10:\"size_after\";i:67028;s:4:\"time\";d:0.09;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5090;s:10:\"size_after\";i:5090;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.76;s:5:\"bytes\";i:328;s:11:\"size_before\";i:43352;s:10:\"size_after\";i:43024;s:4:\"time\";d:0.06;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54;s:5:\"bytes\";i:1971;s:11:\"size_before\";i:127849;s:10:\"size_after\";i:125878;s:4:\"time\";d:0.04;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.25;s:5:\"bytes\";i:2522;s:11:\"size_before\";i:201801;s:10:\"size_after\";i:199279;s:4:\"time\";d:0.11;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.65;s:5:\"bytes\";i:200;s:11:\"size_before\";i:30932;s:10:\"size_after\";i:30732;s:4:\"time\";d:0.1;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.82;s:5:\"bytes\";i:218;s:11:\"size_before\";i:26454;s:10:\"size_after\";i:26236;s:4:\"time\";d:0.03;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.01;s:5:\"bytes\";i:2902;s:11:\"size_before\";i:288241;s:10:\"size_after\";i:285339;s:4:\"time\";d:0.23;}}}'),(650,168,'_wp_attachment_image_alt','Wedding course'),(653,169,'home_slider','2'),(654,169,'_home_slider','field_617a896350163'),(655,169,'home_modules','a:3:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";}'),(656,169,'_home_modules','field_617a8cc2b60e7'),(657,169,'page_choose_language','1'),(658,169,'_page_choose_language','field_617be5fe2198a'),(659,169,'default_full_width_text_content',''),(660,169,'_default_full_width_text_content','field_617bc7ea89569'),(661,169,'home_slider_0_home_slider_background_image','143'),(662,169,'_home_slider_0_home_slider_background_image','field_617a899650164'),(663,169,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(664,169,'_home_slider_0_home_slider_title','field_617a89b150165'),(665,169,'home_slider_0_home_slider_enable_cta','1'),(666,169,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(667,169,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(668,169,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(669,169,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(670,169,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(671,169,'home_slider_1_home_slider_background_image','147'),(672,169,'_home_slider_1_home_slider_background_image','field_617a899650164'),(673,169,'home_slider_1_home_slider_title',''),(674,169,'_home_slider_1_home_slider_title','field_617a89b150165'),(675,169,'home_slider_1_home_slider_enable_cta','0'),(676,169,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(677,169,'home_modules_0_home_two_column_with_image_and_text_image','153'),(678,169,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(679,169,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(680,169,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(681,169,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(682,169,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(683,169,'home_modules_1_home_our_menus_enable_section','1'),(684,169,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(685,169,'home_modules_2_home_full_width_image_and_text_slider','1'),(686,169,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(687,169,'home_modules_2_home_full_width_image_and_text_title',''),(688,169,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(689,169,'home_modules_2_home_full_width_image_and_text_content',''),(690,169,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(691,169,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(692,169,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(693,170,'home_slider','2'),(694,170,'_home_slider','field_617a896350163'),(695,170,'home_modules','a:3:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";}'),(696,170,'_home_modules','field_617a8cc2b60e7'),(697,170,'page_choose_language','1'),(698,170,'_page_choose_language','field_617be5fe2198a'),(699,170,'default_full_width_text_content',''),(700,170,'_default_full_width_text_content','field_617bc7ea89569'),(701,170,'home_slider_0_home_slider_background_image','143'),(702,170,'_home_slider_0_home_slider_background_image','field_617a899650164'),(703,170,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(704,170,'_home_slider_0_home_slider_title','field_617a89b150165'),(705,170,'home_slider_0_home_slider_enable_cta','1'),(706,170,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(707,170,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(708,170,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(709,170,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(710,170,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(711,170,'home_slider_1_home_slider_background_image','147'),(712,170,'_home_slider_1_home_slider_background_image','field_617a899650164'),(713,170,'home_slider_1_home_slider_title',''),(714,170,'_home_slider_1_home_slider_title','field_617a89b150165'),(715,170,'home_slider_1_home_slider_enable_cta','0'),(716,170,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(717,170,'home_modules_0_home_two_column_with_image_and_text_image','153'),(718,170,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(719,170,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(720,170,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(721,170,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(722,170,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(723,170,'home_modules_1_home_our_menus_enable_section','1'),(724,170,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(725,170,'home_modules_2_home_full_width_image_and_text_slider',''),(726,170,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(727,170,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(728,170,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(729,170,'home_modules_2_home_full_width_image_and_text_content',''),(730,170,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(731,138,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','347'),(732,138,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(733,138,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','294'),(734,138,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(735,171,'home_slider','2'),(736,171,'_home_slider','field_617a896350163'),(737,171,'home_modules','a:3:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";}'),(738,171,'_home_modules','field_617a8cc2b60e7'),(739,171,'page_choose_language','1'),(740,171,'_page_choose_language','field_617be5fe2198a'),(741,171,'default_full_width_text_content',''),(742,171,'_default_full_width_text_content','field_617bc7ea89569'),(743,171,'home_slider_0_home_slider_background_image','143'),(744,171,'_home_slider_0_home_slider_background_image','field_617a899650164'),(745,171,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(746,171,'_home_slider_0_home_slider_title','field_617a89b150165'),(747,171,'home_slider_0_home_slider_enable_cta','1'),(748,171,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(749,171,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(750,171,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(751,171,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(752,171,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(753,171,'home_slider_1_home_slider_background_image','147'),(754,171,'_home_slider_1_home_slider_background_image','field_617a899650164'),(755,171,'home_slider_1_home_slider_title',''),(756,171,'_home_slider_1_home_slider_title','field_617a89b150165'),(757,171,'home_slider_1_home_slider_enable_cta','0'),(758,171,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(759,171,'home_modules_0_home_two_column_with_image_and_text_image','153'),(760,171,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(761,171,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(762,171,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(763,171,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(764,171,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(765,171,'home_modules_1_home_our_menus_enable_section','1'),(766,171,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(767,171,'home_modules_2_home_full_width_image_and_text_slider','2'),(768,171,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(769,171,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(770,171,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(771,171,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(772,171,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(773,171,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(774,171,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(775,171,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(776,171,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(777,138,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','338'),(778,138,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(779,138,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','297'),(780,138,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(781,138,'home_modules_3_home_full_width_image_and_text_slider','2'),(782,138,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(783,138,'home_modules_3_home_full_width_image_and_text_title','BAR LOUNGE'),(784,138,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(785,138,'home_modules_3_home_full_width_image_and_text_content','<p style=\"text-align: left;\">Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.</p>\r\n<p style=\"text-align: left;\">Bar selection includes Fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.</p>'),(786,138,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(787,172,'home_slider','2'),(788,172,'_home_slider','field_617a896350163'),(789,172,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(790,172,'_home_modules','field_617a8cc2b60e7'),(791,172,'page_choose_language','1'),(792,172,'_page_choose_language','field_617be5fe2198a'),(793,172,'default_full_width_text_content',''),(794,172,'_default_full_width_text_content','field_617bc7ea89569'),(795,172,'home_slider_0_home_slider_background_image','143'),(796,172,'_home_slider_0_home_slider_background_image','field_617a899650164'),(797,172,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(798,172,'_home_slider_0_home_slider_title','field_617a89b150165'),(799,172,'home_slider_0_home_slider_enable_cta','1'),(800,172,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(801,172,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(802,172,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(803,172,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(804,172,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(805,172,'home_slider_1_home_slider_background_image','147'),(806,172,'_home_slider_1_home_slider_background_image','field_617a899650164'),(807,172,'home_slider_1_home_slider_title',''),(808,172,'_home_slider_1_home_slider_title','field_617a89b150165'),(809,172,'home_slider_1_home_slider_enable_cta','0'),(810,172,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(811,172,'home_modules_0_home_two_column_with_image_and_text_image','153'),(812,172,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(813,172,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(814,172,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(815,172,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(816,172,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(817,172,'home_modules_1_home_our_menus_enable_section','1'),(818,172,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(819,172,'home_modules_2_home_full_width_image_and_text_slider','2'),(820,172,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(821,172,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(822,172,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(823,172,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(824,172,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(825,172,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(826,172,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(827,172,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(828,172,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(829,172,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(830,172,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(831,172,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(832,172,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(833,172,'home_modules_3_home_full_width_image_and_text_slider','2'),(834,172,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(835,172,'home_modules_3_home_full_width_image_and_text_title','PRIVATE DINING'),(836,172,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(837,172,'home_modules_3_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(838,172,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(839,173,'_wp_attached_file','2021/11/2017-award-min.jpg'),(840,173,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:79;s:6:\"height\";i:144;s:4:\"file\";s:26:\"2021/11/2017-award-min.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(841,173,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4107;s:10:\"size_after\";i:4107;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4107;s:10:\"size_after\";i:4107;s:4:\"time\";d:0.01;}}}'),(842,174,'_wp_attached_file','2021/11/2018-award-min.jpg'),(843,174,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:79;s:6:\"height\";i:144;s:4:\"file\";s:26:\"2021/11/2018-award-min.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(844,174,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4326;s:10:\"size_after\";i:4326;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4326;s:10:\"size_after\";i:4326;s:4:\"time\";d:0.01;}}}'),(845,175,'_wp_attached_file','2021/11/2019-award-min.jpg'),(846,175,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:79;s:6:\"height\";i:144;s:4:\"file\";s:26:\"2021/11/2019-award-min.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(847,175,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4558;s:10:\"size_after\";i:4558;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4558;s:10:\"size_after\";i:4558;s:4:\"time\";d:0.01;}}}'),(848,173,'_wp_attachment_image_alt','2017-award-min'),(849,174,'_wp_attachment_image_alt','2018-award-min'),(850,175,'_wp_attachment_image_alt','2019-award-min'),(851,176,'_wp_attached_file','2021/11/diners-choice-award-min.jpg'),(852,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:201;s:6:\"height\";i:144;s:4:\"file\";s:35:\"2021/11/diners-choice-award-min.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"diners-choice-award-min-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(853,176,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4806;s:10:\"size_after\";i:4806;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4806;s:10:\"size_after\";i:4806;s:4:\"time\";d:0.01;}}}'),(854,176,'_wp_attachment_image_alt','diners-choice-award-min'),(861,177,'home_slider','2'),(862,177,'_home_slider','field_617a896350163'),(863,177,'home_modules','a:5:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";i:4;s:30:\"home_full_width_image_and_text\";}'),(864,177,'_home_modules','field_617a8cc2b60e7'),(865,177,'page_choose_language','1'),(866,177,'_page_choose_language','field_617be5fe2198a'),(867,177,'default_full_width_text_content',''),(868,177,'_default_full_width_text_content','field_617bc7ea89569'),(869,177,'home_slider_0_home_slider_background_image','143'),(870,177,'_home_slider_0_home_slider_background_image','field_617a899650164'),(871,177,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(872,177,'_home_slider_0_home_slider_title','field_617a89b150165'),(873,177,'home_slider_0_home_slider_enable_cta','1'),(874,177,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(875,177,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(876,177,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(877,177,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(878,177,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(879,177,'home_slider_1_home_slider_background_image','147'),(880,177,'_home_slider_1_home_slider_background_image','field_617a899650164'),(881,177,'home_slider_1_home_slider_title',''),(882,177,'_home_slider_1_home_slider_title','field_617a89b150165'),(883,177,'home_slider_1_home_slider_enable_cta','0'),(884,177,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(885,177,'home_modules_0_home_two_column_with_image_and_text_image','153'),(886,177,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(887,177,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(888,177,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(889,177,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(890,177,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(891,177,'home_modules_1_home_our_menus_enable_section','1'),(892,177,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(893,177,'home_modules_2_home_full_width_image_and_text_slider','2'),(894,177,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(895,177,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(896,177,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(897,177,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(898,177,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(899,177,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(900,177,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(901,177,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(902,177,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(903,177,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(904,177,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(905,177,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(906,177,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(907,177,'home_modules_3_home_full_width_image_and_text_slider','2'),(908,177,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(909,177,'home_modules_3_home_full_width_image_and_text_title','PRIVATE DINING'),(910,177,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(911,177,'home_modules_3_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(912,177,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(913,177,'home_modules_4_home_full_width_image_and_text_slider',''),(914,177,'_home_modules_4_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(915,177,'home_modules_4_home_full_width_image_and_text_title',''),(916,177,'_home_modules_4_home_full_width_image_and_text_title','field_617a8f79b60f4'),(917,177,'home_modules_4_home_full_width_image_and_text_content','<p><strong>Headings</strong></p>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\n<p>Single line blockquote:</p>\r\n<blockquote>\r\n<p>Stay hungry. Stay foolish.</p>\r\n</blockquote>\r\n<p>Multi line blockquote with a cite reference:</p>\r\n<blockquote cite=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote\">\r\n<p>The <strong>HTML <code><blockquote></code> Element</strong> (or <em>HTML Block Quotation Element</em>) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <strong>cite</strong> attribute, while a text representation of the source can be given using the <a title=\"The HTML Citation Element <cite> represents a reference to a creative work. It must include the title of a work or a URL reference, which may be in an abbreviated form according to the conventions used for the addition of citation metadata.\" href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\"><code><cite></code></a> element.</p>\r\n</blockquote>\r\n<p><cite>multiple contributors</cite> - MDN HTML element reference - blockquote</p>\r\n<h2>Tables</h2>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<th>Employee</th>\r\n<th class=\"views\">Salary</th>\r\n<th> </th>\r\n</tr>\r\n<tr class=\"odd\">\r\n<td><a href=\"http://example.com/\">Jane</a></td>\r\n<td>$1</td>\r\n<td>Because that\'s all Steve Job\' needed for a salary.</td>\r\n</tr>\r\n<tr class=\"even\">\r\n<td><a href=\"http://example.com\">John</a></td>\r\n<td>$100K</td>\r\n<td>For all the blogging he does.</td>\r\n</tr>\r\n<tr class=\"odd\">\r\n<td><a href=\"http://example.com/\">Jane</a></td>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>\r\n</tr>\r\n<tr class=\"even\">\r\n<td><a href=\"http://example.com/\">Jane</a></td>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl>\r\n<dt>Definition List Title</dt>\r\n<dd>Definition list division.</dd>\r\n<dt>Startup</dt>\r\n<dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd>\r\n<dt>#dowork</dt>\r\n<dd>Coined by Rob Dyrdek and his personal body guard Christopher \"Big Black\" Boykins, \"Do Work\" works as a self motivator, to motivating your friends.</dd>\r\n<dt>Do It Live</dt>\r\n<dd>I\'ll let Bill O\'Reilly will <a title=\"We\'ll Do It Live\" href=\"https://www.youtube.com/watch?v=O_HyZ5aW76c\">explain</a> this one.</dd>\r\n</dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n<li>List item one\r\n<ul>\r\n<li>List item one\r\n<ul>\r\n<li>List item one</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ul>\r\n</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ul>\r\n</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol start=\"8\">\r\n<li>List item one -start at 8\r\n<ol>\r\n<li>List item one\r\n<ol reversed=\"reversed\">\r\n<li>List item one -reversed attribute</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ol>\r\n</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ol>\r\n</li>\r\n<li>List item two</li>\r\n<li>List item three</li>\r\n<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\n<p>These supported tags come from the WordPress.com code <a title=\"Code\" href=\"https://en.support.wordpress.com/code/\">FAQ</a>.</p>\r\n<p><strong>Address Tag</strong></p>\r\n<address>1 Infinite Loop<br />Cupertino, CA 95014<br />United States</address>\r\n<p><strong>Anchor Tag (aka. Link)</strong></p>\r\n<p>This is an example of a <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">link</a>.</p>\r\n<p><strong>Abbreviation Tag</strong></p>\r\n<p>The abbreviation <abbr title=\"Seriously\">srsly</abbr> stands for \"seriously\".</p>\r\n<p><strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong></p>\r\n<p>The acronym <acronym title=\"For The Win\">ftw</acronym> stands for \"for the win\".</p>\r\n<p><strong>Big Tag</strong> (<em>deprecated in HTML5</em>)</p>\r\n<p>These tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.</p>\r\n<p><strong>Cite Tag</strong></p>\r\n<p>\"Code is poetry.\" --<cite>Automattic</cite></p>\r\n<p><strong>Code Tag</strong></p>\r\n<p>This tag styles blocks of code.<br /><code>.post-title {<br />\r\nmargin: 0 0 5px;<br />\r\nfont-weight: bold;<br />\r\nfont-size: 38px;<br />\r\nline-height: 1.2;<br />\r\nand here\'s a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;<br />\r\n}</code><br />You will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.</p>\r\n<p><strong>Delete Tag</strong></p>\r\n<p>This tag will let you <del cite=\"deleted it\">strike out text</del>, but this tag is <em>recommended</em> supported in HTML5 (use the <code><s></code> instead).</p>\r\n<p><strong>Emphasize Tag</strong></p>\r\n<p>The emphasize tag should <em>italicize</em> <i>text</i>.</p>\r\n<p><strong>Horizontal Rule Tag</strong></p>\r\n<hr />\r\n<p>This sentence is following a <code><hr /></code> tag.</p>\r\n<p><strong>Insert Tag</strong></p>\r\n<p>This tag should denote <ins cite=\"inserted it\">inserted</ins> text.</p>\r\n<p><strong>Keyboard Tag</strong></p>\r\n<p>This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code><code></code> tag.</p>\r\n<p><strong>Preformatted Tag</strong></p>\r\n<p>This tag is for preserving whitespace as typed, such as in poetry or ASCII art.</p>\r\n<h2>The Road Not Taken</h2>\r\n<pre><cite>Robert Frost</cite>\r\n\r\n\r\nTwo roads diverged in a yellow wood,\r\nAnd sorry I could not travel both (\\_/)\r\nAnd be one traveler, long I stood (=\'.\'=)\r\nAnd looked down one as far as I could (\")_(\")\r\nTo where it bent in the undergrowth;\r\n\r\nThen took the other, as just as fair,\r\nAnd having perhaps the better claim, |\\_/|\r\nBecause it was grassy and wanted wear; / @ @ \\\r\nThough as for that the passing there ( > º < )\r\nHad worn them really about the same, `>>x<<´\r\n/ O \\\r\nAnd both that morning equally lay\r\nIn leaves no step had trodden black.\r\nOh, I kept the first for another day!\r\nYet knowing how way leads on to way,\r\nI doubted if I should ever come back.\r\n\r\nI shall be telling this with a sigh\r\nSomewhere ages and ages hence:\r\nTwo roads diverged in a wood, and I—\r\nI took the one less traveled by,\r\nAnd that has made all the difference.\r\n\r\n\r\nand here\'s a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;\r\n</pre>\r\n<p><strong>Quote Tag</strong> for short, inline quotes</p>\r\n<p><q>Developers, developers, developers...</q> --Steve Ballmer</p>\r\n<p><strong>Strike Tag</strong> (<em>deprecated in HTML5</em>) and <strong>S Tag</strong></p>\r\n<p>This tag shows <span style=\"text-decoration: line-through;\">strike-through</span> <s>text</s>.</p>\r\n<p><strong>Small Tag</strong></p>\r\n<p>This tag shows <small>smaller<small> text.</small></small></p>\r\n<p><strong>Strong Tag</strong></p>\r\n<p>This tag shows <strong>bold<strong> text.</strong></strong></p>\r\n<p><strong>Subscript Tag</strong></p>\r\n<p>Getting our science styling on with H<sub>2</sub>O, which should push the \"2\" down.</p>\r\n<p><strong>Superscript Tag</strong></p>\r\n<p>Still sticking with science and Albert Einstein\'s E = MC<sup>2</sup>, which should lift the 2 up.</p>\r\n<p><strong>Teletype Tag </strong>(<em>obsolete in HTML5</em>)</p>\r\n<p>This rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code><code></code> tag.</p>\r\n<p><strong>Underline Tag</strong> <em>deprecated in HTML 4, re-introduced in HTML5 with other semantics</em></p>\r\n<p>This tag shows <u>underlined text</u>.</p>\r\n<p><strong>Variable Tag</strong></p>\r\n<p>This allows you to denote <var>variables</var>.</p>'),(918,177,'_home_modules_4_home_full_width_image_and_text_content','field_617a8f89b60f5'),(941,182,'_edit_last','2'),(942,182,'_wp_page_template','page-templates/menu.php'),(943,182,'page_choose_language','1'),(944,182,'_page_choose_language','field_617be5fe2198a'),(945,182,'default_full_width_text_content',''),(946,182,'_default_full_width_text_content','field_617bc7ea89569'),(947,183,'page_choose_language','1'),(948,183,'_page_choose_language','field_617be5fe2198a'),(949,183,'default_full_width_text_content',''),(950,183,'_default_full_width_text_content','field_617bc7ea89569'),(951,182,'_edit_lock','1664132125:2'),(971,188,'page_choose_language','1'),(972,188,'_page_choose_language','field_617be5fe2198a'),(973,188,'default_full_width_text_content',''),(974,188,'_default_full_width_text_content','field_617bc7ea89569'),(975,189,'home_slider','2'),(976,189,'_home_slider','field_617a896350163'),(977,189,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(978,189,'_home_modules','field_617a8cc2b60e7'),(979,189,'page_choose_language','1'),(980,189,'_page_choose_language','field_617be5fe2198a'),(981,189,'default_full_width_text_content',''),(982,189,'_default_full_width_text_content','field_617bc7ea89569'),(983,189,'home_slider_0_home_slider_background_image','143'),(984,189,'_home_slider_0_home_slider_background_image','field_617a899650164'),(985,189,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(986,189,'_home_slider_0_home_slider_title','field_617a89b150165'),(987,189,'home_slider_0_home_slider_enable_cta','1'),(988,189,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(989,189,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(990,189,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(991,189,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(992,189,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(993,189,'home_slider_1_home_slider_background_image','147'),(994,189,'_home_slider_1_home_slider_background_image','field_617a899650164'),(995,189,'home_slider_1_home_slider_title',''),(996,189,'_home_slider_1_home_slider_title','field_617a89b150165'),(997,189,'home_slider_1_home_slider_enable_cta','0'),(998,189,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(999,189,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1000,189,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1001,189,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1002,189,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1003,189,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(1004,189,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1005,189,'home_modules_1_home_our_menus_enable_section','1'),(1006,189,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1007,189,'home_modules_2_home_full_width_image_and_text_slider','2'),(1008,189,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1009,189,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(1010,189,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1011,189,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(1012,189,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1013,189,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1014,189,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1015,189,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1016,189,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1017,189,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1018,189,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1019,189,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1020,189,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1021,189,'home_modules_3_home_full_width_image_and_text_slider','2'),(1022,189,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1023,189,'home_modules_3_home_full_width_image_and_text_title','PRIVATE DINING'),(1024,189,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1025,189,'home_modules_3_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(1026,189,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1027,190,'home_slider','2'),(1028,190,'_home_slider','field_617a896350163'),(1029,190,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1030,190,'_home_modules','field_617a8cc2b60e7'),(1031,190,'page_choose_language','1'),(1032,190,'_page_choose_language','field_617be5fe2198a'),(1033,190,'default_full_width_text_content',''),(1034,190,'_default_full_width_text_content','field_617bc7ea89569'),(1035,190,'home_slider_0_home_slider_background_image','143'),(1036,190,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1037,190,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(1038,190,'_home_slider_0_home_slider_title','field_617a89b150165'),(1039,190,'home_slider_0_home_slider_enable_cta','1'),(1040,190,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1041,190,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(1042,190,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1043,190,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1044,190,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1045,190,'home_slider_1_home_slider_background_image','147'),(1046,190,'_home_slider_1_home_slider_background_image','field_617a899650164'),(1047,190,'home_slider_1_home_slider_title',''),(1048,190,'_home_slider_1_home_slider_title','field_617a89b150165'),(1049,190,'home_slider_1_home_slider_enable_cta','0'),(1050,190,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(1051,190,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1052,190,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1053,190,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1054,190,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1055,190,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(1056,190,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1057,190,'home_modules_1_home_our_menus_enable_section','1'),(1058,190,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1059,190,'home_modules_2_home_full_width_image_and_text_slider','2'),(1060,190,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1061,190,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(1062,190,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1063,190,'home_modules_2_home_full_width_image_and_text_content','Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.\r\n\r\nBar selection includes fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.'),(1064,190,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1065,190,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1066,190,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1067,190,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1068,190,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1069,190,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1070,190,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1071,190,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1072,190,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1073,190,'home_modules_3_home_full_width_image_and_text_slider','2'),(1074,190,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1075,190,'home_modules_3_home_full_width_image_and_text_title','PRIVATE DINING'),(1076,190,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1077,190,'home_modules_3_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(1078,190,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1079,191,'home_slider','2'),(1080,191,'_home_slider','field_617a896350163'),(1081,191,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1082,191,'_home_modules','field_617a8cc2b60e7'),(1083,191,'page_choose_language','1'),(1084,191,'_page_choose_language','field_617be5fe2198a'),(1085,191,'default_full_width_text_content',''),(1086,191,'_default_full_width_text_content','field_617bc7ea89569'),(1087,191,'home_slider_0_home_slider_background_image','143'),(1088,191,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1089,191,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(1090,191,'_home_slider_0_home_slider_title','field_617a89b150165'),(1091,191,'home_slider_0_home_slider_enable_cta','1'),(1092,191,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1093,191,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(1094,191,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1095,191,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1096,191,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1097,191,'home_slider_1_home_slider_background_image','147'),(1098,191,'_home_slider_1_home_slider_background_image','field_617a899650164'),(1099,191,'home_slider_1_home_slider_title',''),(1100,191,'_home_slider_1_home_slider_title','field_617a89b150165'),(1101,191,'home_slider_1_home_slider_enable_cta','0'),(1102,191,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(1103,191,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1104,191,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1105,191,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1106,191,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1107,191,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(1108,191,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1109,191,'home_modules_1_home_our_menus_enable_section','1'),(1110,191,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1111,191,'home_modules_2_home_full_width_image_and_text_slider','2'),(1112,191,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1113,191,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(1114,191,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1115,191,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(1116,191,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1117,191,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1118,191,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1119,191,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1120,191,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1121,191,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1122,191,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1123,191,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1124,191,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1125,191,'home_modules_3_home_full_width_image_and_text_slider','2'),(1126,191,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1127,191,'home_modules_3_home_full_width_image_and_text_title','BAR LOUNGE'),(1128,191,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1129,191,'home_modules_3_home_full_width_image_and_text_content','Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.\r\n\r\nBar selection includes fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.'),(1130,191,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1134,192,'_edit_last','2'),(1135,192,'_edit_lock','1660074863:2'),(1136,192,'_wp_page_template','page-templates/home.php'),(1137,192,'home_slider','4'),(1138,192,'_home_slider','field_617a896350163'),(1139,192,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1140,192,'_home_modules','field_617a8cc2b60e7'),(1141,192,'page_choose_language','0'),(1142,192,'_page_choose_language','field_617be5fe2198a'),(1143,192,'default_full_width_text_content',''),(1144,192,'_default_full_width_text_content','field_617bc7ea89569'),(1145,192,'home_slider_0_home_slider_background_image','143'),(1146,192,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1147,192,'home_slider_0_home_slider_title','厳選された素材が活きる<br>こだわりのシーフード、<br>ステーキ、パスタ'),(1148,192,'_home_slider_0_home_slider_title','field_617a89b150165'),(1149,192,'home_slider_0_home_slider_enable_cta','0'),(1150,192,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1151,192,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(1152,192,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1153,192,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:40:\"https://www.oneoahu.org/safe-access-oahu\";s:6:\"target\";s:6:\"_blank\";}'),(1154,192,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1161,192,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1162,192,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1163,192,'home_modules_0_home_two_column_with_image_and_text_title','フレスコへようこそ'),(1164,192,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1165,192,'home_modules_0_home_two_column_with_image_and_text_desc','<p style=\"text-align: left;\">イタリアとハワイの食文化の融合を洗練されたオリジナル料理でご堪能ください。ワイキキのダイニングシーンを彩るヒルトン・ハワイアン・ビレッジ、明るい窓に囲まれた店内は、アロハスピリットをいっぱい感じさせるハワイならではのセッティングが施された172席のダイニングルーム。少人数用のセミプライベートルームや夜空も楽しめる屋外のパティオ席もご利用いただけます。</p>\r\n<p style=\"text-align: left;\">イタリアの北部、南部、中央部の伝統料理をコンセプトベースにし、ハワイ伝統料理とで創り上げられています。ワインセレクションには、人気のイタリアワインが常備され、肉料理、シーフード料理、そしてデザートをさらに際立たせてくれます。</p>\r\n<p style=\"text-align: left;\">新鮮な食材、新しい食との出会い、ダイニングの楽しさが広がります。</p>'),(1166,192,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1167,192,'home_modules_1_home_our_menus_enable_section','1'),(1168,192,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1169,192,'home_modules_2_home_full_width_image_and_text_slider','2'),(1170,192,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1171,192,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1172,192,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1173,192,'home_modules_2_home_full_width_image_and_text_content','<p style=\"text-align: left;\">特別な日のパーティを思い出深く演出する「フレスコ」、美しくライトアップされたビーチの眺めを楽みながら、スペシャルイベントを祝うカスタムメイドのメニューをお楽しみいただけます。</p>\r\n<p style=\"text-align: left;\">思い出の日にあわせて創られるオリジナルメニューは、豊富なセレクションで揃えられたイタリアワインやシャンパンのチョイスとともにクリエイトされています。</p>\r\n<p style=\"text-align: left;\">婚約記念、ウェディングシャワー、ウェディングなど、各種パーティをオアフ島トップレベルのダイニングシーンで。ご予約・お問い合わせは、お気軽に日本語eメールでどうぞ。<a href=\"mailto:info@frescohawaii.com\">info@frescohawaii.com</a></p>'),(1174,192,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1175,192,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','347'),(1176,192,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1177,192,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1178,192,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1179,192,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','338'),(1180,192,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1181,192,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','297'),(1182,192,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1183,192,'home_modules_3_home_full_width_image_and_text_slider','2'),(1184,192,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1185,192,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1186,192,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1187,192,'home_modules_3_home_full_width_image_and_text_content','<p style=\"text-align: left;\">フレスコのバー&ラウンジエリアは、友人たちと近況を報告し合ったり、新しい出会いを楽しんだり、仕事やショッピング、観光の後、1日の終わりをゆったりと寛いで過ごしたりするための、理想的な場所です。</p>\r\n<p style=\"text-align: left;\">バーカウンターでのおすすめは、フレッシュな地産のフルーツやハーブをミックスした、カラフルでおいしいオリジナルカクテル。カスタムデザインのおしゃれなワインセラーには、上質なヴィンテージワインが勢揃い。バーラウンジでオーダーしたい前菜メニューのセレクションにぴったりの1本が見つかるはずです。国産や輸入もの、それにハワイ産のシンプルでお手頃なビールも豊富に揃っています。</p>'),(1188,192,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1197,193,'home_slider','2'),(1198,193,'_home_slider','field_617a896350163'),(1199,193,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1200,193,'_home_modules','field_617a8cc2b60e7'),(1201,193,'page_choose_language','1'),(1202,193,'_page_choose_language','field_617be5fe2198a'),(1203,193,'default_full_width_text_content',''),(1204,193,'_default_full_width_text_content','field_617bc7ea89569'),(1205,193,'home_slider_0_home_slider_background_image','143'),(1206,193,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1207,193,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(1208,193,'_home_slider_0_home_slider_title','field_617a89b150165'),(1209,193,'home_slider_0_home_slider_enable_cta','1'),(1210,193,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1211,193,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(1212,193,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1213,193,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1214,193,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1215,193,'home_slider_1_home_slider_background_image','147'),(1216,193,'_home_slider_1_home_slider_background_image','field_617a899650164'),(1217,193,'home_slider_1_home_slider_title',''),(1218,193,'_home_slider_1_home_slider_title','field_617a89b150165'),(1219,193,'home_slider_1_home_slider_enable_cta','0'),(1220,193,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(1221,193,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1222,193,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1223,193,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1224,193,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1225,193,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(1226,193,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1227,193,'home_modules_1_home_our_menus_enable_section','1'),(1228,193,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1229,193,'home_modules_2_home_full_width_image_and_text_slider','2'),(1230,193,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1231,193,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(1232,193,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1233,193,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(1234,193,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1235,193,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1236,193,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1237,193,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1238,193,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1239,193,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1240,193,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1241,193,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1242,193,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1243,193,'home_modules_3_home_full_width_image_and_text_slider','2'),(1244,193,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1245,193,'home_modules_3_home_full_width_image_and_text_title','BAR LOUNGE'),(1246,193,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1247,193,'home_modules_3_home_full_width_image_and_text_content','Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.\r\n\r\nBar selection includes fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.'),(1248,193,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1249,194,'home_slider','1'),(1250,194,'_home_slider','field_617a896350163'),(1251,194,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1252,194,'_home_modules','field_617a8cc2b60e7'),(1253,194,'page_choose_language','1'),(1254,194,'_page_choose_language','field_617be5fe2198a'),(1255,194,'default_full_width_text_content',''),(1256,194,'_default_full_width_text_content','field_617bc7ea89569'),(1257,194,'home_slider_0_home_slider_background_image','143'),(1258,194,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1259,194,'home_slider_0_home_slider_title','島の味と新鮮な食材をブレンドしたイタリア料理'),(1260,194,'_home_slider_0_home_slider_title','field_617a89b150165'),(1261,194,'home_slider_0_home_slider_enable_cta','1'),(1262,194,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1263,194,'home_slider_0_home_slider_cta_label','安全なアクセスオアフ'),(1264,194,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1265,194,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1266,194,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1267,194,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1268,194,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1269,194,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1270,194,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1271,194,'home_modules_0_home_two_column_with_image_and_text_desc','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">フレスコイタリアンレストラン</span></pre>'),(1272,194,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1273,194,'home_modules_1_home_our_menus_enable_section','1'),(1274,194,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1275,194,'home_modules_2_home_full_width_image_and_text_slider','2'),(1276,194,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1277,194,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1278,194,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1279,194,'home_modules_2_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ゲストを念頭に置いてデザインされた特別メニューと、セミプライベートダイニングルームでのカハナモク公爵ラグーンの注意深い眺めを備えたフレスコは、次のプライベートイベントに最適な場所です。\r\n\r\n厳選された自家製イタリアワインでも、スパークリングシャンパンとカスタム料理の組み合わせでも、この品揃えは思い出に残る芸術的で、オアフ島の最高のワインからインスピレーションを得ているはずです。\r\n\r\n婚約の機会、結婚式のシャワー、リハーサルディナーからビジネスランチ、ディナーの予約が可能です。特別価格とメニューはあなたのニーズに対応するために利用可能です。\r\n\r\n詳細については、info @ frescohawaii.comに電子メールを送信してください。</span></pre>'),(1280,194,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1281,194,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1282,194,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1283,194,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1284,194,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1285,194,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1286,194,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1287,194,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1288,194,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1289,194,'home_modules_3_home_full_width_image_and_text_slider','2'),(1290,194,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1291,194,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1292,194,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1293,194,'home_modules_3_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">Frescoのバー&ラウンジエリアは、友人との交流、新しい知り合いの作成、仕事、ショッピング、観光の1日の後のリラックスに理想的な環境です。\r\n\r\nバーのセレクションには、フレスコのさわやかなオリジナルカクテルが含まれ、カラフルなミックスで新鮮な地元の果物やハーブと混ぜ合わせた魅力的な味を提供します。カスタムデザインのワインセラーには、前菜メニューからの厳選されたワインを引き立てる優れたヴィンテージが揃っています。また、シンプルな国産、輸入、プレミアムの地ビールもお探しの場合はご利用いただけます。</span></pre>'),(1294,194,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1295,195,'home_slider','1'),(1296,195,'_home_slider','field_617a896350163'),(1297,195,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1298,195,'_home_modules','field_617a8cc2b60e7'),(1299,195,'page_choose_language','0'),(1300,195,'_page_choose_language','field_617be5fe2198a'),(1301,195,'default_full_width_text_content',''),(1302,195,'_default_full_width_text_content','field_617bc7ea89569'),(1303,195,'home_slider_0_home_slider_background_image','143'),(1304,195,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1305,195,'home_slider_0_home_slider_title','島の味と新鮮な食材をブレンドしたイタリア料理'),(1306,195,'_home_slider_0_home_slider_title','field_617a89b150165'),(1307,195,'home_slider_0_home_slider_enable_cta','1'),(1308,195,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1309,195,'home_slider_0_home_slider_cta_label','安全なアクセスオアフ'),(1310,195,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1311,195,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1312,195,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1313,195,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1314,195,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1315,195,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(1316,195,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1317,195,'home_modules_0_home_two_column_with_image_and_text_desc','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">フレスコイタリアンレストラン</span></pre>'),(1318,195,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1319,195,'home_modules_1_home_our_menus_enable_section','1'),(1320,195,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1321,195,'home_modules_2_home_full_width_image_and_text_slider','2'),(1322,195,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1323,195,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1324,195,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1325,195,'home_modules_2_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ゲストを念頭に置いてデザインされた特別メニューと、セミプライベートダイニングルームでのカハナモク公爵ラグーンの注意深い眺めを備えたフレスコは、次のプライベートイベントに最適な場所です。\r\n\r\n厳選された自家製イタリアワインでも、スパークリングシャンパンとカスタム料理の組み合わせでも、この品揃えは思い出に残る芸術的で、オアフ島の最高のワインからインスピレーションを得ているはずです。\r\n\r\n婚約の機会、結婚式のシャワー、リハーサルディナーからビジネスランチ、ディナーの予約が可能です。特別価格とメニューはあなたのニーズに対応するために利用可能です。\r\n\r\n詳細については、info @ frescohawaii.comに電子メールを送信してください。</span></pre>'),(1326,195,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1327,195,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1328,195,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1329,195,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1330,195,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1331,195,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1332,195,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1333,195,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1334,195,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1335,195,'home_modules_3_home_full_width_image_and_text_slider','2'),(1336,195,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1337,195,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1338,195,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1339,195,'home_modules_3_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">Frescoのバー&ラウンジエリアは、友人との交流、新しい知り合いの作成、仕事、ショッピング、観光の1日の後のリラックスに理想的な環境です。\r\n\r\nバーのセレクションには、フレスコのさわやかなオリジナルカクテルが含まれ、カラフルなミックスで新鮮な地元の果物やハーブと混ぜ合わせた魅力的な味を提供します。カスタムデザインのワインセラーには、前菜メニューからの厳選されたワインを引き立てる優れたヴィンテージが揃っています。また、シンプルな国産、輸入、プレミアムの地ビールもお探しの場合はご利用いただけます。</span></pre>'),(1340,195,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1341,196,'home_slider','1'),(1342,196,'_home_slider','field_617a896350163'),(1343,196,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1344,196,'_home_modules','field_617a8cc2b60e7'),(1345,196,'page_choose_language','0'),(1346,196,'_page_choose_language','field_617be5fe2198a'),(1347,196,'default_full_width_text_content',''),(1348,196,'_default_full_width_text_content','field_617bc7ea89569'),(1349,196,'home_slider_0_home_slider_background_image','143'),(1350,196,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1351,196,'home_slider_0_home_slider_title','島の味と新鮮な食材をブレンドしたイタリア料理'),(1352,196,'_home_slider_0_home_slider_title','field_617a89b150165'),(1353,196,'home_slider_0_home_slider_enable_cta','1'),(1354,196,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1355,196,'home_slider_0_home_slider_cta_label','安全なアクセスオアフ'),(1356,196,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1357,196,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1358,196,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1359,196,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1360,196,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1361,196,'home_modules_0_home_two_column_with_image_and_text_title','フレスコイタリアンレストラン'),(1362,196,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1363,196,'home_modules_0_home_two_column_with_image_and_text_desc','<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ヒルトンハワイアンビレッジの真っ只中にあるワイキキの端で、イタリア料理と地元のセンスの豪華な融合にご参加ください!</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">世界的に有名なアロハの精神を醸し出す自然な親密さのために設定されたテーブルは、ラップアラウンドウィンドウを備えた現代的なデザインで最大172名様までご利用いただけます。\r\n</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">追加のセミプライベートスペースと夜空の景色を望む屋外パティオ。\r\n\r\nメニューのコンセプトは、イタリアの北、中央、南の地域に触発されました。\r\n</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">伝統的な3つの地域からの真のイタリアの味を注入します。ワインセラーには人気のセレクションがあり、その多くは新鮮なシーフードやステーキのメインディッシュ\r\n(そして食欲をそそるデザート)を補完するように特別にデザインされたイタリアのラベルに捧げられています。</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>'),(1364,196,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1365,196,'home_modules_1_home_our_menus_enable_section','1'),(1366,196,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1367,196,'home_modules_2_home_full_width_image_and_text_slider','2'),(1368,196,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1369,196,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1370,196,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1371,196,'home_modules_2_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ゲストを念頭に置いてデザインされた特別メニューと、セミプライベートダイニングルームでのカハナモク公爵ラグーンの注意深い眺めを備えたフレスコは、次のプライベートイベントに最適な場所です。\r\n\r\n厳選された自家製イタリアワインでも、スパークリングシャンパンとカスタム料理の組み合わせでも、この品揃えは思い出に残る芸術的で、オアフ島の最高のワインからインスピレーションを得ているはずです。\r\n\r\n婚約の機会、結婚式のシャワー、リハーサルディナーからビジネスランチ、ディナーの予約が可能です。特別価格とメニューはあなたのニーズに対応するために利用可能です。\r\n\r\n詳細については、info @ frescohawaii.comに電子メールを送信してください。</span></pre>'),(1372,196,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1373,196,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1374,196,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1375,196,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1376,196,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1377,196,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1378,196,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1379,196,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1380,196,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1381,196,'home_modules_3_home_full_width_image_and_text_slider','2'),(1382,196,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1383,196,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1384,196,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1385,196,'home_modules_3_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">Frescoのバー&ラウンジエリアは、友人との交流、新しい知り合いの作成、仕事、ショッピング、観光の1日の後のリラックスに理想的な環境です。\r\n\r\nバーのセレクションには、フレスコのさわやかなオリジナルカクテルが含まれ、カラフルなミックスで新鮮な地元の果物やハーブと混ぜ合わせた魅力的な味を提供します。カスタムデザインのワインセラーには、前菜メニューからの厳選されたワインを引き立てる優れたヴィンテージが揃っています。また、シンプルな国産、輸入、プレミアムの地ビールもお探しの場合はご利用いただけます。</span></pre>'),(1386,196,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1387,197,'home_slider','1'),(1388,197,'_home_slider','field_617a896350163'),(1389,197,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1390,197,'_home_modules','field_617a8cc2b60e7'),(1391,197,'page_choose_language','1'),(1392,197,'_page_choose_language','field_617be5fe2198a'),(1393,197,'default_full_width_text_content',''),(1394,197,'_default_full_width_text_content','field_617bc7ea89569'),(1395,197,'home_slider_0_home_slider_background_image','143'),(1396,197,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1397,197,'home_slider_0_home_slider_title','島の味と新鮮な食材をブレンドしたイタリア料理'),(1398,197,'_home_slider_0_home_slider_title','field_617a89b150165'),(1399,197,'home_slider_0_home_slider_enable_cta','1'),(1400,197,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1401,197,'home_slider_0_home_slider_cta_label','安全なアクセスオアフ'),(1402,197,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1403,197,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1404,197,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1405,197,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1406,197,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1407,197,'home_modules_0_home_two_column_with_image_and_text_title','フレスコイタリアンレストラン'),(1408,197,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1409,197,'home_modules_0_home_two_column_with_image_and_text_desc','<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ヒルトンハワイアンビレッジの真っ只中にあるワイキキの端で、イタリア料理と地元のセンスの豪華な融合にご参加ください!</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">世界的に有名なアロハの精神を醸し出す自然な親密さのために設定されたテーブルは、ラップアラウンドウィンドウを備えた現代的なデザインで最大172名様までご利用いただけます。\r\n</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">追加のセミプライベートスペースと夜空の景色を望む屋外パティオ。\r\n\r\nメニューのコンセプトは、イタリアの北、中央、南の地域に触発されました。\r\n</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">伝統的な3つの地域からの真のイタリアの味を注入します。ワインセラーには人気のセレクションがあり、その多くは新鮮なシーフードやステーキのメインディッシュ\r\n(そして食欲をそそるデザート)を補完するように特別にデザインされたイタリアのラベルに捧げられています。</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>'),(1410,197,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1411,197,'home_modules_1_home_our_menus_enable_section','1'),(1412,197,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1413,197,'home_modules_2_home_full_width_image_and_text_slider','2'),(1414,197,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1415,197,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1416,197,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1417,197,'home_modules_2_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ゲストを念頭に置いてデザインされた特別メニューと、セミプライベートダイニングルームでのカハナモク公爵ラグーンの注意深い眺めを備えたフレスコは、次のプライベートイベントに最適な場所です。\r\n\r\n厳選された自家製イタリアワインでも、スパークリングシャンパンとカスタム料理の組み合わせでも、この品揃えは思い出に残る芸術的で、オアフ島の最高のワインからインスピレーションを得ているはずです。\r\n\r\n婚約の機会、結婚式のシャワー、リハーサルディナーからビジネスランチ、ディナーの予約が可能です。特別価格とメニューはあなたのニーズに対応するために利用可能です。\r\n\r\n詳細については、info @ frescohawaii.comに電子メールを送信してください。</span></pre>'),(1418,197,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1419,197,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1420,197,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1421,197,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1422,197,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1423,197,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1424,197,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1425,197,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1426,197,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1427,197,'home_modules_3_home_full_width_image_and_text_slider','2'),(1428,197,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1429,197,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1430,197,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1431,197,'home_modules_3_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">Frescoのバー&ラウンジエリアは、友人との交流、新しい知り合いの作成、仕事、ショッピング、観光の1日の後のリラックスに理想的な環境です。\r\n\r\nバーのセレクションには、フレスコのさわやかなオリジナルカクテルが含まれ、カラフルなミックスで新鮮な地元の果物やハーブと混ぜ合わせた魅力的な味を提供します。カスタムデザインのワインセラーには、前菜メニューからの厳選されたワインを引き立てる優れたヴィンテージが揃っています。また、シンプルな国産、輸入、プレミアムの地ビールもお探しの場合はご利用いただけます。</span></pre>'),(1432,197,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1433,198,'home_slider','1'),(1434,198,'_home_slider','field_617a896350163'),(1435,198,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(1436,198,'_home_modules','field_617a8cc2b60e7'),(1437,198,'page_choose_language','0'),(1438,198,'_page_choose_language','field_617be5fe2198a'),(1439,198,'default_full_width_text_content',''),(1440,198,'_default_full_width_text_content','field_617bc7ea89569'),(1441,198,'home_slider_0_home_slider_background_image','143'),(1442,198,'_home_slider_0_home_slider_background_image','field_617a899650164'),(1443,198,'home_slider_0_home_slider_title','島の味と新鮮な食材をブレンドしたイタリア料理'),(1444,198,'_home_slider_0_home_slider_title','field_617a89b150165'),(1445,198,'home_slider_0_home_slider_enable_cta','1'),(1446,198,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(1447,198,'home_slider_0_home_slider_cta_label','安全なアクセスオアフ'),(1448,198,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(1449,198,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(1450,198,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(1451,198,'home_modules_0_home_two_column_with_image_and_text_image','153'),(1452,198,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(1453,198,'home_modules_0_home_two_column_with_image_and_text_title','フレスコイタリアンレストラン'),(1454,198,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(1455,198,'home_modules_0_home_two_column_with_image_and_text_desc','<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ヒルトンハワイアンビレッジの真っ只中にあるワイキキの端で、イタリア料理と地元のセンスの豪華な融合にご参加ください!</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">世界的に有名なアロハの精神を醸し出す自然な親密さのために設定されたテーブルは、ラップアラウンドウィンドウを備えた現代的なデザインで最大172名様までご利用いただけます。\r\n</span></pre>\r\n<pre class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">追加のセミプライベートスペースと夜空の景色を望む屋外パティオ。\r\n\r\nメニューのコンセプトは、イタリアの北、中央、南の地域に触発されました。\r\n</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">伝統的な3つの地域からの真のイタリアの味を注入します。ワインセラーには人気のセレクションがあり、その多くは新鮮なシーフードやステーキのメインディッシュ\r\n(そして食欲をそそるデザート)を補完するように特別にデザインされたイタリアのラベルに捧げられています。</span></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"></pre>'),(1456,198,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(1457,198,'home_modules_1_home_our_menus_enable_section','1'),(1458,198,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(1459,198,'home_modules_2_home_full_width_image_and_text_slider','2'),(1460,198,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1461,198,'home_modules_2_home_full_width_image_and_text_title','プライベートダイニング'),(1462,198,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1463,198,'home_modules_2_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">ゲストを念頭に置いてデザインされた特別メニューと、セミプライベートダイニングルームでのカハナモク公爵ラグーンの注意深い眺めを備えたフレスコは、次のプライベートイベントに最適な場所です。\r\n\r\n厳選された自家製イタリアワインでも、スパークリングシャンパンとカスタム料理の組み合わせでも、この品揃えは思い出に残る芸術的で、オアフ島の最高のワインからインスピレーションを得ているはずです。\r\n\r\n婚約の機会、結婚式のシャワー、リハーサルディナーからビジネスランチ、ディナーの予約が可能です。特別価格とメニューはあなたのニーズに対応するために利用可能です。\r\n\r\n詳細については、info @ frescohawaii.comに電子メールを送信してください。</span></pre>'),(1464,198,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1465,198,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(1466,198,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1467,198,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(1468,198,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1469,198,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(1470,198,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1471,198,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(1472,198,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(1473,198,'home_modules_3_home_full_width_image_and_text_slider','2'),(1474,198,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(1475,198,'home_modules_3_home_full_width_image_and_text_title','バーラウンジ'),(1476,198,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(1477,198,'home_modules_3_home_full_width_image_and_text_content','<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large XcVN5d tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ja\">Frescoのバー&ラウンジエリアは、友人との交流、新しい知り合いの作成、仕事、ショッピング、観光の1日の後のリラックスに理想的な環境です。\r\n\r\nバーのセレクションには、フレスコのさわやかなオリジナルカクテルが含まれ、カラフルなミックスで新鮮な地元の果物やハーブと混ぜ合わせた魅力的な味を提供します。カスタムデザインのワインセラーには、前菜メニューからの厳選されたワインを引き立てる優れたヴィンテージが揃っています。また、シンプルな国産、輸入、プレミアムの地ビールもお探しの場合はご利用いただけます。</span></pre>'),(1478,198,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(1495,200,'page_choose_language','0'),(1496,200,'_page_choose_language','field_617be5fe2198a'),(1497,200,'default_full_width_text_content',''),(1498,200,'_default_full_width_text_content','field_617bc7ea89569'),(1499,182,'menu_slider','10'),(1500,182,'_menu_slider','field_617a951ddac82'),(1501,182,'home_modules','a:8:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";i:5;s:20:\"menu_full_width_list\";i:6;s:26:\"menu_full_width_disclaimer\";i:7;s:21:\"menu_full_width_image\";}'),(1502,182,'_home_modules','field_617a9039cb78a'),(1503,201,'page_choose_language','1'),(1504,201,'_page_choose_language','field_617be5fe2198a'),(1505,201,'default_full_width_text_content',''),(1506,201,'_default_full_width_text_content','field_617bc7ea89569'),(1507,201,'menu_slider',''),(1508,201,'_menu_slider','field_617a951ddac82'),(1509,201,'home_modules',''),(1510,201,'_home_modules','field_617a9039cb78a'),(1511,182,'home_slider',''),(1512,182,'_home_slider','field_617a896350163'),(1513,201,'home_slider',''),(1514,201,'_home_slider','field_617a896350163'),(1515,202,'_wp_attached_file','2021/11/6-min.jpg'),(1516,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2021/11/6-min.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"6-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(1517,202,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4688;s:10:\"size_after\";i:4688;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4688;s:10:\"size_after\";i:4688;s:4:\"time\";d:0.01;}}}'),(1518,202,'_wp_attachment_image_alt','food'),(1519,182,'menu_slider_0_menu_slider_image','349'),(1520,182,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1521,203,'page_choose_language','1'),(1522,203,'_page_choose_language','field_617be5fe2198a'),(1523,203,'default_full_width_text_content',''),(1524,203,'_default_full_width_text_content','field_617bc7ea89569'),(1525,203,'menu_slider','1'),(1526,203,'_menu_slider','field_617a951ddac82'),(1527,203,'home_modules',''),(1528,203,'_home_modules','field_617a9039cb78a'),(1529,203,'home_slider',''),(1530,203,'_home_slider','field_617a896350163'),(1531,203,'menu_slider_0_menu_slider_image','202'),(1532,203,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1533,204,'_wp_attached_file','2021/11/5-min.jpg'),(1534,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2021/11/5-min.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"5-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(1535,204,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5832;s:10:\"size_after\";i:5832;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5832;s:10:\"size_after\";i:5832;s:4:\"time\";d:0.04;}}}'),(1536,205,'_wp_attached_file','2021/11/4-min.jpg'),(1537,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2021/11/4-min.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"4-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(1538,206,'_wp_attached_file','2021/11/10-min.jpg'),(1539,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:18:\"2021/11/10-min.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"10-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(1540,205,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.546448087431694;s:5:\"bytes\";i:36;s:11:\"size_before\";i:6588;s:10:\"size_after\";i:6552;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.55;s:5:\"bytes\";i:36;s:11:\"size_before\";i:6588;s:10:\"size_after\";i:6552;s:4:\"time\";d:0.1;}}}'),(1541,206,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4660;s:10:\"size_after\";i:4660;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4660;s:10:\"size_after\";i:4660;s:4:\"time\";d:0.01;}}}'),(1542,182,'menu_slider_1_menu_slider_image','353'),(1543,182,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1544,182,'menu_slider_2_menu_slider_image','352'),(1545,182,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1546,182,'menu_slider_3_menu_slider_image','351'),(1547,182,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1548,207,'page_choose_language','1'),(1549,207,'_page_choose_language','field_617be5fe2198a'),(1550,207,'default_full_width_text_content',''),(1551,207,'_default_full_width_text_content','field_617bc7ea89569'),(1552,207,'menu_slider','4'),(1553,207,'_menu_slider','field_617a951ddac82'),(1554,207,'home_modules',''),(1555,207,'_home_modules','field_617a9039cb78a'),(1556,207,'home_slider',''),(1557,207,'_home_slider','field_617a896350163'),(1558,207,'menu_slider_0_menu_slider_image','202'),(1559,207,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1560,207,'menu_slider_1_menu_slider_image','204'),(1561,207,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1562,207,'menu_slider_2_menu_slider_image','205'),(1563,207,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1564,207,'menu_slider_3_menu_slider_image','206'),(1565,207,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1566,182,'home_modules_0_home_our_menus_enable_section','1'),(1567,182,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1568,182,'home_modules_0_home_our_menus_enable_download_button','1'),(1569,182,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1570,208,'page_choose_language','1'),(1571,208,'_page_choose_language','field_617be5fe2198a'),(1572,208,'default_full_width_text_content',''),(1573,208,'_default_full_width_text_content','field_617bc7ea89569'),(1574,208,'menu_slider','4'),(1575,208,'_menu_slider','field_617a951ddac82'),(1576,208,'home_modules','a:1:{i:0;s:14:\"home_our_menus\";}'),(1577,208,'_home_modules','field_617a9039cb78a'),(1578,208,'home_slider',''),(1579,208,'_home_slider','field_617a896350163'),(1580,208,'menu_slider_0_menu_slider_image','202'),(1581,208,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1582,208,'menu_slider_1_menu_slider_image','204'),(1583,208,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1584,208,'menu_slider_2_menu_slider_image','205'),(1585,208,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1586,208,'menu_slider_3_menu_slider_image','206'),(1587,208,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1588,208,'home_modules_0_home_our_menus_enable_section','1'),(1589,208,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1590,208,'home_modules_0_home_our_menus_enable_download_button','0'),(1591,208,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1592,209,'_wp_attached_file','2021/11/dummy.pdf'),(1593,182,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1594,182,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1595,182,'home_modules_0_home_our_menus_choose_pdf','416'),(1596,182,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1597,210,'page_choose_language','1'),(1598,210,'_page_choose_language','field_617be5fe2198a'),(1599,210,'default_full_width_text_content',''),(1600,210,'_default_full_width_text_content','field_617bc7ea89569'),(1601,210,'menu_slider','4'),(1602,210,'_menu_slider','field_617a951ddac82'),(1603,210,'home_modules','a:1:{i:0;s:14:\"home_our_menus\";}'),(1604,210,'_home_modules','field_617a9039cb78a'),(1605,210,'home_slider',''),(1606,210,'_home_slider','field_617a896350163'),(1607,210,'menu_slider_0_menu_slider_image','202'),(1608,210,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1609,210,'menu_slider_1_menu_slider_image','204'),(1610,210,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1611,210,'menu_slider_2_menu_slider_image','205'),(1612,210,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1613,210,'menu_slider_3_menu_slider_image','206'),(1614,210,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1615,210,'home_modules_0_home_our_menus_enable_section','1'),(1616,210,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1617,210,'home_modules_0_home_our_menus_enable_download_button','1'),(1618,210,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1619,210,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1620,210,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1621,210,'home_modules_0_home_our_menus_choose_pdf','209'),(1622,210,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1623,182,'home_modules_1_menu_full_width_list_title','Appetizer, Soup & Salad'),(1624,182,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(1625,182,'home_modules_1_menu_full_width_list_content','11'),(1626,182,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(1627,211,'page_choose_language','1'),(1628,211,'_page_choose_language','field_617be5fe2198a'),(1629,211,'default_full_width_text_content',''),(1630,211,'_default_full_width_text_content','field_617bc7ea89569'),(1631,211,'menu_slider','4'),(1632,211,'_menu_slider','field_617a951ddac82'),(1633,211,'home_modules','a:2:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";}'),(1634,211,'_home_modules','field_617a9039cb78a'),(1635,211,'home_slider',''),(1636,211,'_home_slider','field_617a896350163'),(1637,211,'menu_slider_0_menu_slider_image','202'),(1638,211,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1639,211,'menu_slider_1_menu_slider_image','204'),(1640,211,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1641,211,'menu_slider_2_menu_slider_image','205'),(1642,211,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1643,211,'menu_slider_3_menu_slider_image','206'),(1644,211,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1645,211,'home_modules_0_home_our_menus_enable_section','1'),(1646,211,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1647,211,'home_modules_0_home_our_menus_enable_download_button','1'),(1648,211,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1649,211,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1650,211,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1651,211,'home_modules_0_home_our_menus_choose_pdf','209'),(1652,211,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1653,211,'home_modules_1_menu_full_width_list_title',''),(1654,211,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(1655,211,'home_modules_1_menu_full_width_list_content',''),(1656,211,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(1657,182,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Pane Con Aglio $8 </h6>'),(1658,182,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1659,182,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter<strong>,</strong> Parmigiano Reggiano'),(1660,182,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1661,182,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Trio of Bruschetta $14</h6>'),(1662,182,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1663,182,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Prosciutto Di Parma and Thyme'),(1664,182,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1665,182,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Calamari Fritti $15</h6>'),(1666,182,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1667,182,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Cocktail Sauce'),(1668,182,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1669,182,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','<h6>Shrimp Cocktail $15</h6>'),(1670,182,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1671,182,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Shrimps with Kalamansi Cocktail Sauce, Lemon Wedge'),(1672,182,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1673,182,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','<h6>Hawaiian Style Poke $18</h6>'),(1674,182,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1675,182,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ahi Poke, Avocado, with Taro Chips'),(1676,182,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1677,212,'page_choose_language','1'),(1678,212,'_page_choose_language','field_617be5fe2198a'),(1679,212,'default_full_width_text_content',''),(1680,212,'_default_full_width_text_content','field_617bc7ea89569'),(1681,212,'menu_slider','4'),(1682,212,'_menu_slider','field_617a951ddac82'),(1683,212,'home_modules','a:2:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";}'),(1684,212,'_home_modules','field_617a9039cb78a'),(1685,212,'home_slider',''),(1686,212,'_home_slider','field_617a896350163'),(1687,212,'menu_slider_0_menu_slider_image','202'),(1688,212,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1689,212,'menu_slider_1_menu_slider_image','204'),(1690,212,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1691,212,'menu_slider_2_menu_slider_image','205'),(1692,212,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1693,212,'menu_slider_3_menu_slider_image','206'),(1694,212,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1695,212,'home_modules_0_home_our_menus_enable_section','1'),(1696,212,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1697,212,'home_modules_0_home_our_menus_enable_download_button','1'),(1698,212,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1699,212,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1700,212,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1701,212,'home_modules_0_home_our_menus_choose_pdf','209'),(1702,212,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1703,212,'home_modules_1_menu_full_width_list_title','APPETIZER'),(1704,212,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(1705,212,'home_modules_1_menu_full_width_list_content','5'),(1706,212,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(1707,212,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(1708,212,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1709,212,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(1710,212,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1711,212,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(1712,212,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1713,212,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(1714,212,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1715,212,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(1716,212,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1717,212,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(1718,212,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1719,212,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(1720,212,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1721,212,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(1722,212,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1723,212,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(1724,212,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1725,212,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(1726,212,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1727,182,'home_modules_2_menu_full_width_list_title','Risotto & Pasta'),(1728,182,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(1729,182,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Risotto Ai Fungi $27</h6>'),(1730,182,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1731,182,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese\r\nAdd Grilled Chicken Breast $7\r\nAdd Grilled Shrimp $9'),(1732,182,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1733,182,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Penne Alla Vodka $23</h6>'),(1734,182,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1735,182,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil\r\nAdd Grilled Chicken Breast $7\r\nAdd Grilled Shrimp $9'),(1736,182,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1737,182,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Fettuccine Alfredo $23</h6>'),(1738,182,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1739,182,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Fettuccine, Cream Sauce, Nutmeg, Parmigiano Reggiano\r\nAdd Grilled Chicken Breast $7\r\nAdd Grilled Shrimp $9'),(1740,182,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1741,182,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','<h6>Fettuccine Alla Bolognese $26</h6>'),(1742,182,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1743,182,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Fettuccine, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(1744,182,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1745,182,'home_modules_2_menu_full_width_list_content','8'),(1746,182,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(1747,182,'home_modules_3_menu_full_width_list_title','From Land to Sea'),(1748,182,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(1749,182,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Market Fresh Fish Al Forno $32</h6>'),(1750,182,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1751,182,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Daily Selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted Potatoes, Grilled Asparagus, Cauliflower Puree'),(1752,182,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1753,182,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Chicken Parmigiana $30</h6>'),(1754,182,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1755,182,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Breaded Chicken Breast, Mozzarella & Parmesan Cheese, Tomato Sauce with Penne, Seasonal Vegetables'),(1756,182,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1757,182,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Bistecca Alla Griglia $48</h6>'),(1758,182,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1759,182,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Char Grilled Rib Eye Steak (12oz), Arugula, Tomato, Mushroom Demi Glace with Roasted Potato and Grilled Asparagus'),(1760,182,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1761,182,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','<h6>Filetto Di Manzo $55</h6>'),(1762,182,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1763,182,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Seared Prime Beef Tenderloin (8oz), Mushroom Demi Glace, Gorgonzola Fondue, Roasted Potato and Grilled Asparagus'),(1764,182,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1765,182,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','<h6>Surf and Turf $52</h6>'),(1766,182,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1767,182,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Shrimp Scampi & Char Grilled Rib Eye Steak (10oz), Arugula, Tomato, Mushroom Demi Glace with Roasted Potato and Grilled Asparagus\r\n(Upgrade \"Surf\" to Baked Lobster MP)'),(1768,182,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1777,182,'home_modules_3_menu_full_width_list_content','5'),(1778,182,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(1779,213,'page_choose_language','1'),(1780,213,'_page_choose_language','field_617be5fe2198a'),(1781,213,'default_full_width_text_content',''),(1782,213,'_default_full_width_text_content','field_617bc7ea89569'),(1783,213,'menu_slider','4'),(1784,213,'_menu_slider','field_617a951ddac82'),(1785,213,'home_modules','a:4:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";}'),(1786,213,'_home_modules','field_617a9039cb78a'),(1787,213,'home_slider',''),(1788,213,'_home_slider','field_617a896350163'),(1789,213,'menu_slider_0_menu_slider_image','202'),(1790,213,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1791,213,'menu_slider_1_menu_slider_image','204'),(1792,213,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1793,213,'menu_slider_2_menu_slider_image','205'),(1794,213,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1795,213,'menu_slider_3_menu_slider_image','206'),(1796,213,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1797,213,'home_modules_0_home_our_menus_enable_section','1'),(1798,213,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1799,213,'home_modules_0_home_our_menus_enable_download_button','1'),(1800,213,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1801,213,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1802,213,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1803,213,'home_modules_0_home_our_menus_choose_pdf','209'),(1804,213,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1805,213,'home_modules_1_menu_full_width_list_title','APPETIZER'),(1806,213,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(1807,213,'home_modules_1_menu_full_width_list_content','5'),(1808,213,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(1809,213,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(1810,213,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1811,213,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(1812,213,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1813,213,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(1814,213,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1815,213,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(1816,213,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1817,213,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(1818,213,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1819,213,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(1820,213,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1821,213,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(1822,213,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1823,213,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(1824,213,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1825,213,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(1826,213,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1827,213,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(1828,213,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1829,213,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(1830,213,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(1831,213,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(1832,213,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1833,213,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(1834,213,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1835,213,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(1836,213,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1837,213,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(1838,213,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1839,213,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(1840,213,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1841,213,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(1842,213,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1843,213,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(1844,213,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1845,213,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(1846,213,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1847,213,'home_modules_2_menu_full_width_list_content','4'),(1848,213,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(1849,213,'home_modules_3_menu_full_width_list_title','ENTREE'),(1850,213,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(1851,213,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(1852,213,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1853,213,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(1854,213,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1855,213,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(1856,213,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1857,213,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(1858,213,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1859,213,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(1860,213,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1861,213,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(1862,213,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1863,213,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(1864,213,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1865,213,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(1866,213,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1867,213,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(1868,213,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1869,213,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(1870,213,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1871,213,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(1872,213,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(1873,213,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(1874,213,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(1875,213,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(1876,213,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(1877,213,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(1878,213,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(1879,213,'home_modules_3_menu_full_width_list_content','7'),(1880,213,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(1881,182,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(1882,182,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(1883,182,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $10'),(1884,182,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(1885,182,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(1886,182,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(1887,182,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(1888,182,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(1889,182,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(1890,182,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(1891,182,'home_modules_4_menu_two_column_list_col_1',''),(1892,182,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(1893,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(1894,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(1895,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(1896,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(1897,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Crème Brulee $12'),(1898,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(1899,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(1900,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(1901,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Sorbet $6'),(1902,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(1903,182,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(1904,182,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(1905,182,'home_modules_4_menu_two_column_list_col_2',''),(1906,182,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(1907,216,'page_choose_language','1'),(1908,216,'_page_choose_language','field_617be5fe2198a'),(1909,216,'default_full_width_text_content',''),(1910,216,'_default_full_width_text_content','field_617bc7ea89569'),(1911,216,'menu_slider','4'),(1912,216,'_menu_slider','field_617a951ddac82'),(1913,216,'home_modules','a:5:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";}'),(1914,216,'_home_modules','field_617a9039cb78a'),(1915,216,'home_slider',''),(1916,216,'_home_slider','field_617a896350163'),(1917,216,'menu_slider_0_menu_slider_image','202'),(1918,216,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(1919,216,'menu_slider_1_menu_slider_image','204'),(1920,216,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(1921,216,'menu_slider_2_menu_slider_image','205'),(1922,216,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(1923,216,'menu_slider_3_menu_slider_image','206'),(1924,216,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(1925,216,'home_modules_0_home_our_menus_enable_section','1'),(1926,216,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(1927,216,'home_modules_0_home_our_menus_enable_download_button','1'),(1928,216,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(1929,216,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(1930,216,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(1931,216,'home_modules_0_home_our_menus_choose_pdf','209'),(1932,216,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(1933,216,'home_modules_1_menu_full_width_list_title','APPETIZER'),(1934,216,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(1935,216,'home_modules_1_menu_full_width_list_content','5'),(1936,216,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(1937,216,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(1938,216,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1939,216,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(1940,216,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1941,216,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(1942,216,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1943,216,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(1944,216,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1945,216,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(1946,216,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1947,216,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(1948,216,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1949,216,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(1950,216,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1951,216,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(1952,216,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1953,216,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(1954,216,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1955,216,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(1956,216,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1957,216,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(1958,216,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(1959,216,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(1960,216,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1961,216,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(1962,216,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1963,216,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(1964,216,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1965,216,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(1966,216,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1967,216,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(1968,216,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1969,216,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(1970,216,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1971,216,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(1972,216,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1973,216,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(1974,216,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1975,216,'home_modules_2_menu_full_width_list_content','4'),(1976,216,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(1977,216,'home_modules_3_menu_full_width_list_title','ENTREE'),(1978,216,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(1979,216,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(1980,216,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(1981,216,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(1982,216,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(1983,216,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(1984,216,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(1985,216,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(1986,216,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(1987,216,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(1988,216,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(1989,216,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(1990,216,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(1991,216,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(1992,216,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(1993,216,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(1994,216,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(1995,216,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(1996,216,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(1997,216,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(1998,216,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(1999,216,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(2000,216,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(2001,216,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(2002,216,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(2003,216,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(2004,216,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(2005,216,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(2006,216,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(2007,216,'home_modules_3_menu_full_width_list_content','7'),(2008,216,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(2009,216,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(2010,216,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(2011,216,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(2012,216,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2013,216,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(2014,216,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2015,216,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(2016,216,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2017,216,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(2018,216,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(2019,216,'home_modules_4_menu_two_column_list_col_1',''),(2020,216,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(2021,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DeSSERT'),(2022,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(2023,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(2024,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(2025,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(2026,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(2027,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(2028,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(2029,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(2030,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(2031,216,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(2032,216,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(2033,216,'home_modules_4_menu_two_column_list_col_2',''),(2034,216,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(2035,217,'page_choose_language','1'),(2036,217,'_page_choose_language','field_617be5fe2198a'),(2037,217,'default_full_width_text_content',''),(2038,217,'_default_full_width_text_content','field_617bc7ea89569'),(2039,217,'menu_slider','4'),(2040,217,'_menu_slider','field_617a951ddac82'),(2041,217,'home_modules','a:5:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";}'),(2042,217,'_home_modules','field_617a9039cb78a'),(2043,217,'home_slider',''),(2044,217,'_home_slider','field_617a896350163'),(2045,217,'menu_slider_0_menu_slider_image','202'),(2046,217,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2047,217,'menu_slider_1_menu_slider_image','204'),(2048,217,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2049,217,'menu_slider_2_menu_slider_image','205'),(2050,217,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(2051,217,'menu_slider_3_menu_slider_image','206'),(2052,217,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(2053,217,'home_modules_0_home_our_menus_enable_section','1'),(2054,217,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2055,217,'home_modules_0_home_our_menus_enable_download_button','1'),(2056,217,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2057,217,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2058,217,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2059,217,'home_modules_0_home_our_menus_choose_pdf','209'),(2060,217,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2061,217,'home_modules_1_menu_full_width_list_title','APPETIZER'),(2062,217,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2063,217,'home_modules_1_menu_full_width_list_content','5'),(2064,217,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2065,217,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(2066,217,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2067,217,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(2068,217,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2069,217,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(2070,217,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2071,217,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(2072,217,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2073,217,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(2074,217,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2075,217,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(2076,217,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2077,217,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(2078,217,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2079,217,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(2080,217,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2081,217,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(2082,217,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2083,217,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(2084,217,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2085,217,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(2086,217,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(2087,217,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(2088,217,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2089,217,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(2090,217,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2091,217,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(2092,217,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2093,217,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(2094,217,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2095,217,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(2096,217,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2097,217,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(2098,217,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2099,217,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(2100,217,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2101,217,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(2102,217,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2103,217,'home_modules_2_menu_full_width_list_content','4'),(2104,217,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(2105,217,'home_modules_3_menu_full_width_list_title','ENTREE'),(2106,217,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(2107,217,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(2108,217,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2109,217,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(2110,217,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2111,217,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(2112,217,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2113,217,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(2114,217,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2115,217,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(2116,217,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2117,217,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(2118,217,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2119,217,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(2120,217,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2121,217,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(2122,217,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2123,217,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(2124,217,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2125,217,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(2126,217,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2127,217,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(2128,217,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(2129,217,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(2130,217,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(2131,217,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(2132,217,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(2133,217,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(2134,217,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(2135,217,'home_modules_3_menu_full_width_list_content','7'),(2136,217,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(2137,217,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(2138,217,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(2139,217,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(2140,217,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2141,217,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(2142,217,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2143,217,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(2144,217,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2145,217,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(2146,217,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(2147,217,'home_modules_4_menu_two_column_list_col_1',''),(2148,217,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(2149,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(2150,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(2151,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(2152,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(2153,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(2154,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(2155,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(2156,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(2157,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(2158,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(2159,217,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(2160,217,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(2161,217,'home_modules_4_menu_two_column_list_col_2',''),(2162,217,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(2165,218,'page_choose_language','1'),(2166,218,'_page_choose_language','field_617be5fe2198a'),(2167,218,'default_full_width_text_content',''),(2168,218,'_default_full_width_text_content','field_617bc7ea89569'),(2169,218,'menu_slider','4'),(2170,218,'_menu_slider','field_617a951ddac82'),(2171,218,'home_modules','a:6:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";i:5;s:26:\"menu_full_width_disclaimer\";}'),(2172,218,'_home_modules','field_617a9039cb78a'),(2173,218,'home_slider',''),(2174,218,'_home_slider','field_617a896350163'),(2175,218,'menu_slider_0_menu_slider_image','202'),(2176,218,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2177,218,'menu_slider_1_menu_slider_image','204'),(2178,218,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2179,218,'menu_slider_2_menu_slider_image','205'),(2180,218,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(2181,218,'menu_slider_3_menu_slider_image','206'),(2182,218,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(2183,218,'home_modules_0_home_our_menus_enable_section','1'),(2184,218,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2185,218,'home_modules_0_home_our_menus_enable_download_button','1'),(2186,218,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2187,218,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2188,218,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2189,218,'home_modules_0_home_our_menus_choose_pdf','209'),(2190,218,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2191,218,'home_modules_1_menu_full_width_list_title','APPETIZER'),(2192,218,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2193,218,'home_modules_1_menu_full_width_list_content','5'),(2194,218,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2195,218,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(2196,218,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2197,218,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(2198,218,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2199,218,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(2200,218,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2201,218,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(2202,218,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2203,218,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(2204,218,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2205,218,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(2206,218,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2207,218,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(2208,218,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2209,218,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(2210,218,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2211,218,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(2212,218,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2213,218,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(2214,218,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2215,218,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(2216,218,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(2217,218,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(2218,218,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2219,218,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(2220,218,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2221,218,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(2222,218,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2223,218,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(2224,218,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2225,218,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(2226,218,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2227,218,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(2228,218,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2229,218,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(2230,218,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2231,218,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(2232,218,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2233,218,'home_modules_2_menu_full_width_list_content','4'),(2234,218,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(2235,218,'home_modules_3_menu_full_width_list_title','ENTREE'),(2236,218,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(2237,218,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(2238,218,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2239,218,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(2240,218,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2241,218,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(2242,218,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2243,218,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(2244,218,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2245,218,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(2246,218,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2247,218,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(2248,218,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2249,218,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(2250,218,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2251,218,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(2252,218,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2253,218,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(2254,218,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2255,218,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(2256,218,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2257,218,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(2258,218,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(2259,218,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(2260,218,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(2261,218,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(2262,218,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(2263,218,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(2264,218,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(2265,218,'home_modules_3_menu_full_width_list_content','7'),(2266,218,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(2267,218,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(2268,218,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(2269,218,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(2270,218,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2271,218,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(2272,218,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2273,218,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(2274,218,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2275,218,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(2276,218,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(2277,218,'home_modules_4_menu_two_column_list_col_1',''),(2278,218,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(2279,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(2280,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(2281,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(2282,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(2283,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(2284,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(2285,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(2286,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(2287,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(2288,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(2289,218,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(2290,218,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(2291,218,'home_modules_4_menu_two_column_list_col_2',''),(2292,218,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(2293,218,'home_modules_5_menu_full_width_disclaimer_text','Menu and prices are subject to change.'),(2294,218,'_home_modules_5_menu_full_width_disclaimer_text','field_617a943fba48f'),(2295,219,'_wp_attached_file','2021/11/U1A3733-min-scaled.jpg'),(2296,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2021/11/U1A3733-min-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"U1A3733-min-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:24:\"U1A3733-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"U1A3733-min-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:\"U1A3733-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"U1A3733-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"U1A3733-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"U1A3733-min-850x266.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:23:\"U1A3733-min-630x282.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}s:14:\"original_image\";s:15:\"U1A3733-min.jpg\";}'),(2297,219,'_wp_attachment_image_alt','Dessert'),(2298,219,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.007737851335863;s:5:\"bytes\";i:26995;s:11:\"size_before\";i:673572;s:10:\"size_after\";i:646577;s:4:\"time\";d:0.78;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6851;s:10:\"size_after\";i:6851;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.47;s:5:\"bytes\";i:2181;s:11:\"size_before\";i:48810;s:10:\"size_after\";i:46629;s:4:\"time\";d:0.06;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4084;s:10:\"size_after\";i:4084;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.03;s:5:\"bytes\";i:1202;s:11:\"size_before\";i:29838;s:10:\"size_after\";i:28636;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.33;s:5:\"bytes\";i:4319;s:11:\"size_before\";i:99664;s:10:\"size_after\";i:95345;s:4:\"time\";d:0.07;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.31;s:5:\"bytes\";i:7472;s:11:\"size_before\";i:173366;s:10:\"size_after\";i:165894;s:4:\"time\";d:0.09;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29;s:5:\"bytes\";i:862;s:11:\"size_before\";i:26194;s:10:\"size_after\";i:25332;s:4:\"time\";d:0.02;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8;s:5:\"bytes\";i:533;s:11:\"size_before\";i:19049;s:10:\"size_after\";i:18516;s:4:\"time\";d:0.05;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.92;s:5:\"bytes\";i:10426;s:11:\"size_before\";i:265716;s:10:\"size_after\";i:255290;s:4:\"time\";d:0.44;}}}'),(2301,220,'page_choose_language','1'),(2302,220,'_page_choose_language','field_617be5fe2198a'),(2303,220,'default_full_width_text_content',''),(2304,220,'_default_full_width_text_content','field_617bc7ea89569'),(2305,220,'menu_slider','4'),(2306,220,'_menu_slider','field_617a951ddac82'),(2307,220,'home_modules','a:7:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";i:5;s:26:\"menu_full_width_disclaimer\";i:6;s:21:\"menu_full_width_image\";}'),(2308,220,'_home_modules','field_617a9039cb78a'),(2309,220,'home_slider',''),(2310,220,'_home_slider','field_617a896350163'),(2311,220,'menu_slider_0_menu_slider_image','202'),(2312,220,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2313,220,'menu_slider_1_menu_slider_image','204'),(2314,220,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2315,220,'menu_slider_2_menu_slider_image','205'),(2316,220,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(2317,220,'menu_slider_3_menu_slider_image','206'),(2318,220,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(2319,220,'home_modules_0_home_our_menus_enable_section','1'),(2320,220,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2321,220,'home_modules_0_home_our_menus_enable_download_button','1'),(2322,220,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2323,220,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2324,220,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2325,220,'home_modules_0_home_our_menus_choose_pdf','209'),(2326,220,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2327,220,'home_modules_1_menu_full_width_list_title','APPETIZER'),(2328,220,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2329,220,'home_modules_1_menu_full_width_list_content','5'),(2330,220,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2331,220,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(2332,220,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2333,220,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(2334,220,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2335,220,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(2336,220,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2337,220,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(2338,220,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2339,220,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(2340,220,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2341,220,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(2342,220,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2343,220,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(2344,220,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2345,220,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(2346,220,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2347,220,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(2348,220,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2349,220,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(2350,220,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2351,220,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(2352,220,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(2353,220,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(2354,220,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2355,220,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(2356,220,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2357,220,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(2358,220,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2359,220,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(2360,220,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2361,220,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(2362,220,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2363,220,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(2364,220,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2365,220,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(2366,220,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2367,220,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(2368,220,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2369,220,'home_modules_2_menu_full_width_list_content','4'),(2370,220,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(2371,220,'home_modules_3_menu_full_width_list_title','ENTREE'),(2372,220,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(2373,220,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(2374,220,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2375,220,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(2376,220,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2377,220,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(2378,220,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2379,220,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(2380,220,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2381,220,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(2382,220,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2383,220,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(2384,220,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2385,220,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(2386,220,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2387,220,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(2388,220,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2389,220,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(2390,220,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2391,220,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(2392,220,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2393,220,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(2394,220,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(2395,220,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(2396,220,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(2397,220,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(2398,220,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(2399,220,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(2400,220,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(2401,220,'home_modules_3_menu_full_width_list_content','7'),(2402,220,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(2403,220,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(2404,220,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(2405,220,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(2406,220,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2407,220,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(2408,220,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2409,220,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(2410,220,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(2411,220,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(2412,220,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(2413,220,'home_modules_4_menu_two_column_list_col_1',''),(2414,220,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(2415,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(2416,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(2417,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(2418,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(2419,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(2420,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(2421,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(2422,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(2423,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(2424,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(2425,220,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(2426,220,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(2427,220,'home_modules_4_menu_two_column_list_col_2',''),(2428,220,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(2429,220,'home_modules_5_menu_full_width_disclaimer_text','Menu and prices are subject to change.'),(2430,220,'_home_modules_5_menu_full_width_disclaimer_text','field_617a943fba48f'),(2431,220,'home_modules_6_menu_full_width_image','219'),(2432,220,'_home_modules_6_menu_full_width_image','field_617a947eba494'),(2446,222,'_edit_last','1'),(2447,222,'_wp_page_template','page-templates/menu.php'),(2448,222,'page_choose_language','1'),(2449,222,'_page_choose_language','field_617be5fe2198a'),(2450,222,'default_full_width_text_content',''),(2451,222,'_default_full_width_text_content','field_617bc7ea89569'),(2452,222,'_edit_lock','1659758598:2'),(2453,222,'menu_slider','10'),(2454,222,'_menu_slider','field_617a951ddac82'),(2455,222,'home_modules','a:11:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_full_width_list\";i:5;s:20:\"menu_full_width_list\";i:6;s:20:\"menu_full_width_list\";i:7;s:20:\"menu_full_width_list\";i:8;s:20:\"menu_two_column_list\";i:9;s:26:\"menu_full_width_disclaimer\";i:10;s:21:\"menu_full_width_image\";}'),(2456,222,'_home_modules','field_617a9039cb78a'),(2457,222,'home_slider',''),(2458,222,'_home_slider','field_617a896350163'),(2459,222,'menu_slider_0_menu_slider_image','349'),(2460,222,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2461,222,'menu_slider_1_menu_slider_image','353'),(2462,222,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2467,222,'home_modules_0_home_our_menus_enable_section','1'),(2468,222,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2469,222,'home_modules_0_home_our_menus_enable_download_button','1'),(2470,222,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2471,222,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2472,222,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2473,222,'home_modules_0_home_our_menus_choose_pdf','418'),(2474,222,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2475,222,'home_modules_1_menu_full_width_list_title','YOGURT & FRUITS'),(2476,222,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2477,222,'home_modules_1_menu_full_width_list_content','1'),(2478,222,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2479,222,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Yogurt Fruit Bowl $15</h6>'),(2480,222,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2481,222,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Plain Yogurt, Granola, Fresh Fruits & Local Honey'),(2482,222,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2499,222,'home_modules_2_menu_full_width_list_title','MEAT & EGGS'),(2500,222,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(2501,222,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Eggs Your Style $16</h6>'),(2502,222,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2503,222,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Portuguese Sausage or Bacon, Tater Tots and Toast'),(2504,222,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2505,222,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Basil Frittata $19</h6>'),(2506,222,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2507,222,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Pesto, White & Green Onions, Spinach, Melted Parmesan'),(2508,222,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2509,222,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Veggie Omelet $19</h6>'),(2510,222,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2511,222,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Spinach, Mushroom, White & Green Onion, Tomato\r\nChoice of Rice, Tater Tots or Toast'),(2512,222,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2517,222,'home_modules_2_menu_full_width_list_content','6'),(2518,222,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(2519,222,'home_modules_3_menu_full_width_list_title','BENEDICT'),(2520,222,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(2521,222,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Kalua Pig Benedict $21</h6>'),(2522,222,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2523,222,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Slow Roasted Kalua Pig, Poached Local Eggs, Tater Tots, Taro Bun'),(2524,222,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2525,222,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Classic Benedict $21</h6>'),(2526,222,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2527,222,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Canadian Bacon & Sliced Turkey, Poached Local Eggs, Tater Tots, English Muffin'),(2528,222,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2529,222,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Prosciutto Benedict $21</h6>'),(2530,222,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2531,222,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Prosciutto, Poached Local Eggs, Roasted Tomato, Salsa Verde Hollandaise, Tater Tots, English Muffin'),(2532,222,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2549,222,'home_modules_3_menu_full_width_list_content','4'),(2550,222,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(2701,223,'_edit_last','1'),(2702,223,'_wp_page_template','page-templates/menu.php'),(2703,223,'page_choose_language','1'),(2704,223,'_page_choose_language','field_617be5fe2198a'),(2705,223,'default_full_width_text_content',''),(2706,223,'_default_full_width_text_content','field_617bc7ea89569'),(2707,223,'_edit_lock','1659703835:1'),(2708,223,'menu_slider','10'),(2709,223,'_menu_slider','field_617a951ddac82'),(2710,223,'home_modules','a:5:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:26:\"menu_full_width_disclaimer\";i:4;s:21:\"menu_full_width_image\";}'),(2711,223,'_home_modules','field_617a9039cb78a'),(2712,223,'home_slider',''),(2713,223,'_home_slider','field_617a896350163'),(2714,223,'menu_slider_0_menu_slider_image','349'),(2715,223,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2716,223,'menu_slider_1_menu_slider_image','353'),(2717,223,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2718,223,'menu_slider_2_menu_slider_image','352'),(2719,223,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(2720,223,'menu_slider_3_menu_slider_image','351'),(2721,223,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(2722,223,'home_modules_0_home_our_menus_enable_section','1'),(2723,223,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2724,223,'home_modules_0_home_our_menus_enable_download_button','1'),(2725,223,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2726,223,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2727,223,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2728,223,'home_modules_0_home_our_menus_choose_pdf','340'),(2729,223,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2730,223,'home_modules_1_menu_full_width_list_title','Handcrafted Signature Cocktails $14'),(2731,223,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2732,223,'home_modules_1_menu_full_width_list_content','6'),(2733,223,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2734,223,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>Mai Tai</h6>'),(2735,223,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2736,223,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Kohana Rum, Tropical Fruit Juices, Orange Curacao, Orgeat, Fresh Lime Squeeze, Dark Rum Float'),(2737,223,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2738,223,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>Fresco Colada</h6>'),(2739,223,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2740,223,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Three Olives Coconut Water Vodka, Amaretto, Crème de Banana, Pineapple Juice'),(2741,223,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2742,223,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>Fresco Manhattan</h6>'),(2743,223,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2744,223,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Buffalo Trace Bourbon, Tuaca Italiano, Sweet Vermouth, Vanilla Infused Simple Syrup with a dash of Bitters'),(2745,223,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2746,223,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','<h6>Mango Sangria Fizz</h6>'),(2747,223,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(2748,223,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Mango Fusion Rum, Orange Juice, Pineapple Juice, Mango Puree, Splash of Prosecco and Fresh Fruit'),(2749,223,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(2750,223,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','<h6>Basil Limonata</h6>'),(2751,223,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(2752,223,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Bulldog Gin and Elderflower Liqueur, Bruised with Fresh Basil and Lemon'),(2753,223,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(2754,223,'home_modules_2_menu_full_width_list_title','Featured Wine Menu'),(2755,223,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(2756,223,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','<h6>SPARKLING</h6>'),(2757,223,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2758,223,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Prosecco, RUFFINO, Tuscany, Italy 11 / 45\r\nMoscato, RUFFINO, Tuscany, Italy 11 / 45\r\nRose, CHANDON 187ml, Carneros, CA 19'),(2759,223,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2760,223,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','<h6>WHITE</h6>'),(2761,223,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2762,223,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Chardonnay, ELOUAN, Oregon (House Wine) 12 / 50\r\nPinot Grigio, SANTA CHRISTINA, Veneto, Italy 12 / 50\r\nRiesling, CHATEAU STE. MICHELLE, Columbia, WA 12 / 50\r\nSauvignon Blanc, EMMOLO, Napa Valley, CA 12 / 50\r\nSauvignon Blanc, KIM CRAWFORD, Marlborough, NZ 14 / 55\r\nChardonnay, RODNEY STRONG CHALK HILL, Sonoma, CA 15 / 60'),(2763,223,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2764,223,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','<h6>RED</h6>'),(2765,223,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2766,223,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Sangiovese, FRESCOBALDI 11 / 50\r\nRed Blend, SANTA CHRISTINA “Le Maestrelle”, Tuscany, Italy 12 / 50\r\nChianti, TOSCOLO, Tuscany, Italy 13 / 50\r\nPinot Noir, MEIOMI, Sonoma, CA 14 / 60\r\nMerlot, BROADSIDE, Santa Rosa, CA 15 / 60\r\nCabernet Sauvignon, DAOU, Paso Robles, CA 16 / 65'),(2767,223,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2772,223,'home_modules_2_menu_full_width_list_content','3'),(2773,223,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(2956,224,'page_choose_language','1'),(2957,224,'_page_choose_language','field_617be5fe2198a'),(2958,224,'default_full_width_text_content',''),(2959,224,'_default_full_width_text_content','field_617bc7ea89569'),(2960,224,'menu_slider','4'),(2961,224,'_menu_slider','field_617a951ddac82'),(2962,224,'home_modules','a:7:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";i:5;s:26:\"menu_full_width_disclaimer\";i:6;s:21:\"menu_full_width_image\";}'),(2963,224,'_home_modules','field_617a9039cb78a'),(2964,224,'home_slider',''),(2965,224,'_home_slider','field_617a896350163'),(2966,224,'menu_slider_0_menu_slider_image','202'),(2967,224,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(2968,224,'menu_slider_1_menu_slider_image','204'),(2969,224,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(2970,224,'menu_slider_2_menu_slider_image','205'),(2971,224,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(2972,224,'menu_slider_3_menu_slider_image','206'),(2973,224,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(2974,224,'home_modules_0_home_our_menus_enable_section','1'),(2975,224,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(2976,224,'home_modules_0_home_our_menus_enable_download_button','1'),(2977,224,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(2978,224,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(2979,224,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(2980,224,'home_modules_0_home_our_menus_choose_pdf','209'),(2981,224,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(2982,224,'home_modules_1_menu_full_width_list_title','APPETIZER'),(2983,224,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(2984,224,'home_modules_1_menu_full_width_list_content','5'),(2985,224,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(2986,224,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(2987,224,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(2988,224,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(2989,224,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(2990,224,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(2991,224,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(2992,224,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(2993,224,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(2994,224,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(2995,224,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(2996,224,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(2997,224,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(2998,224,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(2999,224,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3000,224,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(3001,224,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3002,224,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(3003,224,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(3004,224,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(3005,224,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(3006,224,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(3007,224,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(3008,224,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(3009,224,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(3010,224,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(3011,224,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(3012,224,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(3013,224,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(3014,224,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(3015,224,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(3016,224,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(3017,224,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(3018,224,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(3019,224,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(3020,224,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(3021,224,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3022,224,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(3023,224,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3024,224,'home_modules_2_menu_full_width_list_content','4'),(3025,224,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(3026,224,'home_modules_3_menu_full_width_list_title','ENTREE'),(3027,224,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(3028,224,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(3029,224,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(3030,224,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(3031,224,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(3032,224,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(3033,224,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(3034,224,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(3035,224,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(3036,224,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(3037,224,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(3038,224,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(3039,224,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(3040,224,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(3041,224,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3042,224,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(3043,224,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3044,224,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(3045,224,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(3046,224,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(3047,224,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(3048,224,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(3049,224,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(3050,224,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(3051,224,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(3052,224,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(3053,224,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(3054,224,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(3055,224,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(3056,224,'home_modules_3_menu_full_width_list_content','7'),(3057,224,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(3058,224,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(3059,224,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(3060,224,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(3061,224,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3062,224,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(3063,224,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3064,224,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(3065,224,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3066,224,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(3067,224,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(3068,224,'home_modules_4_menu_two_column_list_col_1',''),(3069,224,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(3070,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(3071,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(3072,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(3073,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(3074,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(3075,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(3076,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(3077,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(3078,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(3079,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(3080,224,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(3081,224,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(3082,224,'home_modules_4_menu_two_column_list_col_2',''),(3083,224,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(3084,224,'home_modules_5_menu_full_width_disclaimer_text','Menu and prices are subject to change.'),(3085,224,'_home_modules_5_menu_full_width_disclaimer_text','field_617a943fba48f'),(3086,224,'home_modules_6_menu_full_width_image','219'),(3087,224,'_home_modules_6_menu_full_width_image','field_617a947eba494'),(3088,225,'page_choose_language','1'),(3089,225,'_page_choose_language','field_617be5fe2198a'),(3090,225,'default_full_width_text_content',''),(3091,225,'_default_full_width_text_content','field_617bc7ea89569'),(3092,225,'menu_slider','4'),(3093,225,'_menu_slider','field_617a951ddac82'),(3094,225,'home_modules','a:7:{i:0;s:14:\"home_our_menus\";i:1;s:20:\"menu_full_width_list\";i:2;s:20:\"menu_full_width_list\";i:3;s:20:\"menu_full_width_list\";i:4;s:20:\"menu_two_column_list\";i:5;s:26:\"menu_full_width_disclaimer\";i:6;s:21:\"menu_full_width_image\";}'),(3095,225,'_home_modules','field_617a9039cb78a'),(3096,225,'home_slider',''),(3097,225,'_home_slider','field_617a896350163'),(3098,225,'menu_slider_0_menu_slider_image','202'),(3099,225,'_menu_slider_0_menu_slider_image','field_617a951ddd71c'),(3100,225,'menu_slider_1_menu_slider_image','204'),(3101,225,'_menu_slider_1_menu_slider_image','field_617a951ddd71c'),(3102,225,'menu_slider_2_menu_slider_image','205'),(3103,225,'_menu_slider_2_menu_slider_image','field_617a951ddd71c'),(3104,225,'menu_slider_3_menu_slider_image','206'),(3105,225,'_menu_slider_3_menu_slider_image','field_617a951ddd71c'),(3106,225,'home_modules_0_home_our_menus_enable_section','1'),(3107,225,'_home_modules_0_home_our_menus_enable_section','field_617a9039cf162'),(3108,225,'home_modules_0_home_our_menus_enable_download_button','1'),(3109,225,'_home_modules_0_home_our_menus_enable_download_button','field_617a90c2ba47d'),(3110,225,'home_modules_0_home_our_menus_button_label','DOWNLOAD PDF MENU'),(3111,225,'_home_modules_0_home_our_menus_button_label','field_617a9112ba47e'),(3112,225,'home_modules_0_home_our_menus_choose_pdf','209'),(3113,225,'_home_modules_0_home_our_menus_choose_pdf','field_617a912aba47f'),(3114,225,'home_modules_1_menu_full_width_list_title','APPETIZER'),(3115,225,'_home_modules_1_menu_full_width_list_title','field_617a9320ba483'),(3116,225,'home_modules_1_menu_full_width_list_content','5'),(3117,225,'_home_modules_1_menu_full_width_list_content','field_617a9320ba484'),(3118,225,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','Pane Con Aglio $8'),(3119,225,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(3120,225,'home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','Baked Garlic Bread with Garlic Pesto Butter, Parmigiano Reggiano'),(3121,225,'_home_modules_1_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(3122,225,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','Trio of Bruschetta $14'),(3123,225,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(3124,225,'home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','Truffle Mushroom, Tomato & Burrata, Ricotta, Honey, Proscuitto Di Parma and Thyme'),(3125,225,'_home_modules_1_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(3126,225,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','Calamari Fritti $15'),(3127,225,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(3128,225,'home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','Roasted Garlic Aioli and Tomato Jam'),(3129,225,'_home_modules_1_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(3130,225,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','Spinach, Crab and Artichoke Dip $20'),(3131,225,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3132,225,'home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','Creamy Spinach and Crab, Artichoke Dip served with Fresh Garlic Crostini'),(3133,225,'_home_modules_1_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3134,225,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','Smoked Mozzarella Meatballs (2pc) $16'),(3135,225,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(3136,225,'home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','Ground Beef, Italian Sausage & Veal Meatballs, Mozzarella with Pomodoro\r\n Sauce'),(3137,225,'_home_modules_1_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(3138,225,'home_modules_2_menu_full_width_list_title','SOUP & SALAD'),(3139,225,'_home_modules_2_menu_full_width_list_title','field_617a9320ba483'),(3140,225,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','Ewa Corn Chowder $10'),(3141,225,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(3142,225,'home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','Ewa Corn, Pancetta, Vegetables, Thyme, Chicken Stock & Heavy Cream'),(3143,225,'_home_modules_2_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(3144,225,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','Insalata Panzanella $15'),(3145,225,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(3146,225,'home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','Tomato, Ciabatta, Burrata, Olive Oil and Sherry Vinaigrette'),(3147,225,'_home_modules_2_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(3148,225,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','Insalata Di Cesare $14'),(3149,225,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(3150,225,'home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','Romaine Lettuce, Herb Croutons, Parmesan Reggaiano and Parmigiano Vinaigrette'),(3151,225,'_home_modules_2_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(3152,225,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','Fresco Chopped Salad $14'),(3153,225,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3154,225,'home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','Romaine Lettuce, Pepperoncini, Kalamata Olives, Ho Farm Tomato, Cucumber with Oregano Vinaigrette'),(3155,225,'_home_modules_2_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3156,225,'home_modules_2_menu_full_width_list_content','4'),(3157,225,'_home_modules_2_menu_full_width_list_content','field_617a9320ba484'),(3158,225,'home_modules_3_menu_full_width_list_title','ENTREE'),(3159,225,'_home_modules_3_menu_full_width_list_title','field_617a9320ba483'),(3160,225,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','Risotto AI Fungi $27'),(3161,225,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_heading','field_617a9320ba485'),(3162,225,'home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','Arborio Rice, Cremini Mushroom, Button Mushroom, Black Truffle, Parmigiano Cheese \r\nAdd Grilled Shrimp $9'),(3163,225,'_home_modules_3_menu_full_width_list_content_0_menu_full_width_list_description','field_617a9320ba486'),(3164,225,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','Fettuccine Alla Carbonara $25'),(3165,225,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_heading','field_617a9320ba485'),(3166,225,'home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','Fettuccine, Pancetta, Black Pepper, Island Fresh Egg, Parmigiano Reggiano'),(3167,225,'_home_modules_3_menu_full_width_list_content_1_menu_full_width_list_description','field_617a9320ba486'),(3168,225,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','Penne Alla Vodka $23'),(3169,225,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_heading','field_617a9320ba485'),(3170,225,'home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','Penne, Vodka, Parmesan Cream, Fresh Basil \r\nAdd Grilled Shrimp $9'),(3171,225,'_home_modules_3_menu_full_width_list_content_2_menu_full_width_list_description','field_617a9320ba486'),(3172,225,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','Spaghetti Ai Gamberi $28'),(3173,225,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_heading','field_617a9320ba485'),(3174,225,'home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','Spaghetti \"Garlic Shrimp\". Lemon, Garlic Butter'),(3175,225,'_home_modules_3_menu_full_width_list_content_3_menu_full_width_list_description','field_617a9320ba486'),(3176,225,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','Rigatoni Alla Bolognese $24'),(3177,225,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_heading','field_617a9320ba485'),(3178,225,'home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','Rigatoni, Beef, Pork and Veal Ragout, Parmigiano Reggiano'),(3179,225,'_home_modules_3_menu_full_width_list_content_4_menu_full_width_list_description','field_617a9320ba486'),(3180,225,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','Market Fresh Fish Al Forno $32'),(3181,225,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_heading','field_617a9320ba485'),(3182,225,'home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','Daily selection of Market Fresh Fish, Brown Butter Lemon Caper Sauce, Roasted potatoes, Grilled Asparagus, Cauliflower Puree'),(3183,225,'_home_modules_3_menu_full_width_list_content_5_menu_full_width_list_description','field_617a9320ba486'),(3184,225,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','Fresco Prime Rib of Beef $48'),(3185,225,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_heading','field_617a9320ba485'),(3186,225,'home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','Slow Roasted Prime Rib, Horseradish Cream, Salsa Verde, Roasted Potatoes, Brussel Sprouts with Pine Nuts & Balsamic'),(3187,225,'_home_modules_3_menu_full_width_list_content_6_menu_full_width_list_description','field_617a9320ba486'),(3188,225,'home_modules_3_menu_full_width_list_content','7'),(3189,225,'_home_modules_3_menu_full_width_list_content','field_617a9320ba484'),(3190,225,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','SIDES'),(3191,225,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_title','field_61825ddd2acb2'),(3192,225,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','Grilled Asparagus $9'),(3193,225,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_0_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3194,225,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','Crispy Potatoes Parmesan $10'),(3195,225,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_1_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3196,225,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','Fried Brussel Sprouts $10'),(3197,225,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items_2_menu_two_column_list_col1_title','field_617bb7ef0a4f8'),(3198,225,'home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','3'),(3199,225,'_home_modules_4_menu_two_column_list_col_1_menu_two_column_list_col1_list_items','field_617bb7ef0a4f7'),(3200,225,'home_modules_4_menu_two_column_list_col_1',''),(3201,225,'_home_modules_4_menu_two_column_list_col_1','field_617bb7ef0a4f6'),(3202,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','DESSERT'),(3203,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_title','field_61825dea2acb3'),(3204,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','Tiramisu $12'),(3205,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_0_menu_two_column_list_col2_title','field_617a9426ba48d'),(3206,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','Creme Brulee $12'),(3207,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_1_menu_two_column_list_col2_title','field_617a9426ba48d'),(3208,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','Vanilla Gelato $6'),(3209,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_2_menu_two_column_list_col2_title','field_617a9426ba48d'),(3210,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','Mango Scorbet $6'),(3211,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items_3_menu_two_column_list_col2_title','field_617a9426ba48d'),(3212,225,'home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','4'),(3213,225,'_home_modules_4_menu_two_column_list_col_2_menu_two_column_list_col2_list_items','field_617a9426ba48c'),(3214,225,'home_modules_4_menu_two_column_list_col_2',''),(3215,225,'_home_modules_4_menu_two_column_list_col_2','field_617a9426ba48b'),(3216,225,'home_modules_5_menu_full_width_disclaimer_text','Menu and prices are subject to change.'),(3217,225,'_home_modules_5_menu_full_width_disclaimer_text','field_617a943fba48f'),(3218,225,'home_modules_6_menu_full_width_image','219'),(3219,225,'_home_modules_6_menu_full_width_image','field_617a947eba494'),(5047,239,'_wp_attached_file','2021/11/160-3.png'),(5048,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:98;s:4:\"file\";s:17:\"2021/11/160-3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"160-3-150x98.png\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(5049,239,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3856812933025404;s:5:\"bytes\";i:6;s:11:\"size_before\";i:433;s:10:\"size_after\";i:427;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.39;s:5:\"bytes\";i:6;s:11:\"size_before\";i:433;s:10:\"size_after\";i:427;s:4:\"time\";d:0.01;}}}'),(5223,245,'_wp_attached_file','2021/11/1602.png'),(5224,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:98;s:4:\"file\";s:16:\"2021/11/1602.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1602-150x98.png\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(5225,245,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3856812933025404;s:5:\"bytes\";i:6;s:11:\"size_before\";i:433;s:10:\"size_after\";i:427;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.39;s:5:\"bytes\";i:6;s:11:\"size_before\";i:433;s:10:\"size_after\";i:427;s:4:\"time\";d:0.03;}}}'),(5453,251,'_wp_attached_file','2021/11/Dummy-mp4.mp4'),(5454,251,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:265106;s:8:\"filesize\";i:331431;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:10;s:16:\"length_formatted\";s:4:\"0:10\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(5599,255,'_wp_attached_file','2021/11/Dummy-mp4-1.mp4'),(5600,255,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:265106;s:8:\"filesize\";i:331431;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:10;s:16:\"length_formatted\";s:4:\"0:10\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(5975,262,'_wp_attached_file','2021/11/fff.png'),(5976,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1155;s:6:\"height\";i:770;s:4:\"file\";s:15:\"2021/11/fff.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"fff-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"fff-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"fff-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:15:\"fff-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"fff-850x266.png\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:15:\"fff-630x282.png\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(5977,262,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.91323240177469;s:5:\"bytes\";i:12405;s:11:\"size_before\";i:65589;s:10:\"size_after\";i:53184;s:4:\"time\";d:0.98;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.18;s:5:\"bytes\";i:627;s:11:\"size_before\";i:4422;s:10:\"size_after\";i:3795;s:4:\"time\";d:0.07;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.11;s:5:\"bytes\";i:3946;s:11:\"size_before\";i:20645;s:10:\"size_after\";i:16699;s:4:\"time\";d:0.48;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.87;s:5:\"bytes\";i:313;s:11:\"size_before\";i:2432;s:10:\"size_after\";i:2119;s:4:\"time\";d:0.05;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.44;s:5:\"bytes\";i:2684;s:11:\"size_before\";i:13810;s:10:\"size_after\";i:11126;s:4:\"time\";d:0.12;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.65;s:5:\"bytes\";i:2727;s:11:\"size_before\";i:13878;s:10:\"size_after\";i:11151;s:4:\"time\";d:0.08;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.27;s:5:\"bytes\";i:2108;s:11:\"size_before\";i:10402;s:10:\"size_after\";i:8294;s:4:\"time\";d:0.18;}}}'),(6050,264,'_wp_attached_file','2021/11/fff-1.png'),(6051,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1155;s:6:\"height\";i:770;s:4:\"file\";s:17:\"2021/11/fff-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"fff-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"fff-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"fff-1-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:17:\"fff-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"fff-1-850x266.png\";s:5:\"width\";i:850;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"video-gallery-thumbnail\";a:4:{s:4:\"file\";s:17:\"fff-1-630x282.png\";s:5:\"width\";i:630;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(6052,264,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.202166291009267;s:5:\"bytes\";i:11629;s:11:\"size_before\";i:63888;s:10:\"size_after\";i:52259;s:4:\"time\";d:0.59;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.52;s:5:\"bytes\";i:586;s:11:\"size_before\";i:4334;s:10:\"size_after\";i:3748;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.7;s:5:\"bytes\";i:3766;s:11:\"size_before\";i:20142;s:10:\"size_after\";i:16376;s:4:\"time\";d:0.18;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.65;s:5:\"bytes\";i:327;s:11:\"size_before\";i:2396;s:10:\"size_after\";i:2069;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.43;s:5:\"bytes\";i:2488;s:11:\"size_before\";i:13503;s:10:\"size_after\";i:11015;s:4:\"time\";d:0.18;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.32;s:5:\"bytes\";i:2578;s:11:\"size_before\";i:13341;s:10:\"size_after\";i:10763;s:4:\"time\";d:0.09;}s:23:\"video-gallery-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.52;s:5:\"bytes\";i:1884;s:11:\"size_before\";i:10172;s:10:\"size_after\";i:8288;s:4:\"time\";d:0.09;}}}'),(6323,138,'home_slider_1_home_slider_cta_label','SAFE ACCESS OAHU'),(6324,138,'_home_slider_1_home_slider_cta_label','field_617a89f150167'),(6325,138,'home_slider_1_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:40:\"https://www.oneoahu.org/safe-access-oahu\";s:6:\"target\";s:6:\"_blank\";}'),(6326,138,'_home_slider_1_home_slider_cta_link','field_617a8a0d50168'),(6327,270,'home_slider','2'),(6328,270,'_home_slider','field_617a896350163'),(6329,270,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(6330,270,'_home_modules','field_617a8cc2b60e7'),(6331,270,'page_choose_language','1'),(6332,270,'_page_choose_language','field_617be5fe2198a'),(6333,270,'default_full_width_text_content',''),(6334,270,'_default_full_width_text_content','field_617bc7ea89569'),(6335,270,'home_slider_0_home_slider_background_image','143'),(6336,270,'_home_slider_0_home_slider_background_image','field_617a899650164'),(6337,270,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(6338,270,'_home_slider_0_home_slider_title','field_617a89b150165'),(6339,270,'home_slider_0_home_slider_enable_cta','1'),(6340,270,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(6341,270,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(6342,270,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(6343,270,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6344,270,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(6345,270,'home_slider_1_home_slider_background_image','147'),(6346,270,'_home_slider_1_home_slider_background_image','field_617a899650164'),(6347,270,'home_slider_1_home_slider_title','SAFE ACCESS OAHU'),(6348,270,'_home_slider_1_home_slider_title','field_617a89b150165'),(6349,270,'home_slider_1_home_slider_enable_cta','1'),(6350,270,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(6351,270,'home_modules_0_home_two_column_with_image_and_text_image','153'),(6352,270,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(6353,270,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(6354,270,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(6355,270,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(6356,270,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(6357,270,'home_modules_1_home_our_menus_enable_section','1'),(6358,270,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(6359,270,'home_modules_2_home_full_width_image_and_text_slider','2'),(6360,270,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(6361,270,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(6362,270,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(6363,270,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(6364,270,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(6365,270,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(6366,270,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6367,270,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(6368,270,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6369,270,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(6370,270,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6371,270,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(6372,270,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6373,270,'home_modules_3_home_full_width_image_and_text_slider','2'),(6374,270,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(6375,270,'home_modules_3_home_full_width_image_and_text_title','BAR LOUNGE'),(6376,270,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(6377,270,'home_modules_3_home_full_width_image_and_text_content','Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.\r\n\r\nBar selection includes fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.'),(6378,270,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(6379,270,'home_slider_1_home_slider_cta_label','SAFE ACCESS OAHU'),(6380,270,'_home_slider_1_home_slider_cta_label','field_617a89f150167'),(6381,270,'home_slider_1_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6382,270,'_home_slider_1_home_slider_cta_link','field_617a8a0d50168'),(6383,271,'home_slider','2'),(6384,271,'_home_slider','field_617a896350163'),(6385,271,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(6386,271,'_home_modules','field_617a8cc2b60e7'),(6387,271,'page_choose_language','1'),(6388,271,'_page_choose_language','field_617be5fe2198a'),(6389,271,'default_full_width_text_content',''),(6390,271,'_default_full_width_text_content','field_617bc7ea89569'),(6391,271,'home_slider_0_home_slider_background_image','143'),(6392,271,'_home_slider_0_home_slider_background_image','field_617a899650164'),(6393,271,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(6394,271,'_home_slider_0_home_slider_title','field_617a89b150165'),(6395,271,'home_slider_0_home_slider_enable_cta','1'),(6396,271,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(6397,271,'home_slider_0_home_slider_cta_label','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(6398,271,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(6399,271,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6400,271,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(6401,271,'home_slider_1_home_slider_background_image','147'),(6402,271,'_home_slider_1_home_slider_background_image','field_617a899650164'),(6403,271,'home_slider_1_home_slider_title','SAFE ACCESS OAHU'),(6404,271,'_home_slider_1_home_slider_title','field_617a89b150165'),(6405,271,'home_slider_1_home_slider_enable_cta','1'),(6406,271,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(6407,271,'home_modules_0_home_two_column_with_image_and_text_image','153'),(6408,271,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(6409,271,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(6410,271,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(6411,271,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(6412,271,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(6413,271,'home_modules_1_home_our_menus_enable_section','1'),(6414,271,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(6415,271,'home_modules_2_home_full_width_image_and_text_slider','2'),(6416,271,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(6417,271,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(6418,271,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(6419,271,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(6420,271,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(6421,271,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(6422,271,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6423,271,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(6424,271,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6425,271,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(6426,271,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6427,271,'home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','148'),(6428,271,'_home_modules_3_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6429,271,'home_modules_3_home_full_width_image_and_text_slider','2'),(6430,271,'_home_modules_3_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(6431,271,'home_modules_3_home_full_width_image_and_text_title','BAR LOUNGE'),(6432,271,'_home_modules_3_home_full_width_image_and_text_title','field_617a8f79b60f4'),(6433,271,'home_modules_3_home_full_width_image_and_text_content','Fresco\'s bar & lounge area is the ideal setting for catching up with friends, making new acquaintances, or relaxing after a day of work, shopping or sightseeing.\r\n\r\nBar selection includes fresco\'s refreshing original cocktail that offers irresistible taste intermixed with fresh local fruits and herbs in the colorful mixes. Our custom-designed wine cellar is stocked with superior vintages to complement our fine selections from our appetizer menu. And if you\'re looking for something simple, domestic, imported, and premium local beer is also available.'),(6434,271,'_home_modules_3_home_full_width_image_and_text_content','field_617a8f89b60f5'),(6435,271,'home_slider_1_home_slider_cta_label','SAFE ACCESS OAHU'),(6436,271,'_home_slider_1_home_slider_cta_label','field_617a89f150167'),(6437,271,'home_slider_1_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6438,271,'_home_slider_1_home_slider_cta_link','field_617a8a0d50168'),(6439,272,'home_slider','2'),(6440,272,'_home_slider','field_617a896350163'),(6441,272,'home_modules','a:4:{i:0;s:35:\"home_two_column_with_image_and_text\";i:1;s:14:\"home_our_menus\";i:2;s:30:\"home_full_width_image_and_text\";i:3;s:30:\"home_full_width_image_and_text\";}'),(6442,272,'_home_modules','field_617a8cc2b60e7'),(6443,272,'page_choose_language','1'),(6444,272,'_page_choose_language','field_617be5fe2198a'),(6445,272,'default_full_width_text_content',''),(6446,272,'_default_full_width_text_content','field_617bc7ea89569'),(6447,272,'home_slider_0_home_slider_background_image','143'),(6448,272,'_home_slider_0_home_slider_background_image','field_617a899650164'),(6449,272,'home_slider_0_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(6450,272,'_home_slider_0_home_slider_title','field_617a89b150165'),(6451,272,'home_slider_0_home_slider_enable_cta','1'),(6452,272,'_home_slider_0_home_slider_enable_cta','field_617a89d650166'),(6453,272,'home_slider_0_home_slider_cta_label','SAFE ACCESS OAHU'),(6454,272,'_home_slider_0_home_slider_cta_label','field_617a89f150167'),(6455,272,'home_slider_0_home_slider_cta_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(6456,272,'_home_slider_0_home_slider_cta_link','field_617a8a0d50168'),(6457,272,'home_slider_1_home_slider_background_image','147'),(6458,272,'_home_slider_1_home_slider_background_image','field_617a899650164'),(6459,272,'home_slider_1_home_slider_title','Italian Cuisine prepared with Fresh Ingredients blended with Island Flavors'),(6460,272,'_home_slider_1_home_slider_title','field_617a89b150165'),(6461,272,'home_slider_1_home_slider_enable_cta','1'),(6462,272,'_home_slider_1_home_slider_enable_cta','field_617a89d650166'),(6463,272,'home_modules_0_home_two_column_with_image_and_text_image','153'),(6464,272,'_home_modules_0_home_two_column_with_image_and_text_image','field_617a8d6cb60e8'),(6465,272,'home_modules_0_home_two_column_with_image_and_text_title','FRESCO ITALIAN RESTAURANT'),(6466,272,'_home_modules_0_home_two_column_with_image_and_text_title','field_617a8d7fb60e9'),(6467,272,'home_modules_0_home_two_column_with_image_and_text_desc','Join us on the edge of Waikiki for a sumptuous fusion of Italian cuisine and local flair in the midst of Hilton Hawaiian Village! Set for a natural intimacy that exudes the world- renowned spirit of Aloha, tables seat up to 172 guests in a contemporary design with wraparound windows, additional semi-private spaces and an open-air patio with views of the night sky. The menu concept was inspired by the North, Central and South region of Italy. Infusing the true Italian flavors from traditional three regions. The wine cellar stores popular selections, many of which are dedicated to Italian labels specifically designed to complement fresh seafood and steak entrees (and tantalizing desserts).'),(6468,272,'_home_modules_0_home_two_column_with_image_and_text_desc','field_617a8d91b60ea'),(6469,272,'home_modules_1_home_our_menus_enable_section','1'),(6470,272,'_home_modules_1_home_our_menus_enable_section','field_617a8deab60ec'),(6471,272,'home_modules_2_home_full_width_image_and_text_slider','2'),(6472,272,'_home_modules_2_home_full_width_image_and_text_slider','field_617a8ee7b60f1'),(6473,272,'home_modules_2_home_full_width_image_and_text_title','PRIVATE DINING'),(6474,272,'_home_modules_2_home_full_width_image_and_text_title','field_617a8f79b60f4'),(6475,272,'home_modules_2_home_full_width_image_and_text_content','With special menus designed with your guests in mind and carefully lit view of Duke Kahanamoku Lagoon in our semi-private dining room, Fresco is perfect location for your next private event.\r\n\r\nWhether it’s a fine array of in house Italian wines or sparkling champagne paired with custom dishes, the assortment is sure to be memorable, artful and inspired by some of the best of Oahu.\r\n\r\nReservations are available for engagement occasions, wedding showers, rehearsal dinners to business luncheons and dinners. Special prices and menus are available to accommodate your needs.\r\n\r\nFor more information please E-mail info@frescohawaii.com.'),(6476,272,'_home_modules_2_home_full_width_image_and_text_content','field_617a8f89b60f5'),(6477,272,'home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','148'),(6478,272,'_home_modules_2_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6479,272,'home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','168'),(6480,272,'_home_modules_2_home_full_width_image_and_text_slider_1_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6481,272,'home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','168'),(6482,272,'_home_modules_3_home_full_width_image_and_text_slider_0_home_full_width_image_and_text_slider_image','field_617a8f01b60f2'),(6483,272,'home_module
Showing 512.00 KB of 3.75 MB. Use Edit/Download for full content.
Directory Contents
Dirs: 3 × Files: 22