-- MySQL dump 10.13  Distrib 5.7.35, for Win64 (x86_64)
--
-- Host: 142.93.53.126    Database: royal_caribbean
-- ------------------------------------------------------
-- Server version	5.7.31-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 `wp_commentmeta`
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (3,'siteurl','http://localhost/royal-caribbean-digital/web/wp','yes'),(4,'home','http://localhost/royal-caribbean-digital/web/wp','yes'),(5,'blogname','Royal Caribbean Digital','yes'),(6,'blogdescription','Where tech enhances travel','yes'),(7,'users_can_register','0','yes'),(8,'admin_email','dev@cappen.com','yes'),(9,'start_of_week','1','yes'),(10,'use_balanceTags','0','yes'),(11,'use_smilies','1','yes'),(12,'require_name_email','1','yes'),(13,'comments_notify','1','yes'),(14,'posts_per_rss','10','yes'),(15,'rss_use_excerpt','0','yes'),(16,'mailserver_url','mail.example.com','yes'),(17,'mailserver_login','login@example.com','yes'),(18,'mailserver_pass','password','yes'),(19,'mailserver_port','110','yes'),(20,'default_category','1','yes'),(21,'default_comment_status','open','yes'),(22,'default_ping_status','open','yes'),(23,'default_pingback_flag','1','yes'),(24,'posts_per_page','10','yes'),(25,'date_format','F j, Y','yes'),(26,'time_format','g:i a','yes'),(27,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','0','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','/%postname%/','yes'),(31,'rewrite_rules','a:167:{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:9:\"brands/?$\";s:26:\"index.php?post_type=brands\";s:39:\"brands/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=brands&feed=$matches[1]\";s:34:\"brands/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=brands&feed=$matches[1]\";s:26:\"brands/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=brands&paged=$matches[1]\";s:8:\"ships/?$\";s:25:\"index.php?post_type=ships\";s:38:\"ships/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=ships&feed=$matches[1]\";s:33:\"ships/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=ships&feed=$matches[1]\";s:25:\"ships/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=ships&paged=$matches[1]\";s:6:\"faq/?$\";s:23:\"index.php?post_type=faq\";s:36:\"faq/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:31:\"faq/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:23:\"faq/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=faq&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"brands/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"brands/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"brands/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"brands/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"brands/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"brands/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"brands/([^/]+)/embed/?$\";s:39:\"index.php?brands=$matches[1]&embed=true\";s:27:\"brands/([^/]+)/trackback/?$\";s:33:\"index.php?brands=$matches[1]&tb=1\";s:47:\"brands/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?brands=$matches[1]&feed=$matches[2]\";s:42:\"brands/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?brands=$matches[1]&feed=$matches[2]\";s:35:\"brands/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?brands=$matches[1]&paged=$matches[2]\";s:42:\"brands/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?brands=$matches[1]&cpage=$matches[2]\";s:31:\"brands/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?brands=$matches[1]&page=$matches[2]\";s:23:\"brands/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"brands/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"brands/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"brands/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"brands/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"brands/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"ships/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"ships/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"ships/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"ships/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"ships/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"ships/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"ships/([^/]+)/embed/?$\";s:38:\"index.php?ships=$matches[1]&embed=true\";s:26:\"ships/([^/]+)/trackback/?$\";s:32:\"index.php?ships=$matches[1]&tb=1\";s:46:\"ships/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?ships=$matches[1]&feed=$matches[2]\";s:41:\"ships/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?ships=$matches[1]&feed=$matches[2]\";s:34:\"ships/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?ships=$matches[1]&paged=$matches[2]\";s:41:\"ships/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?ships=$matches[1]&cpage=$matches[2]\";s:30:\"ships/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?ships=$matches[1]&page=$matches[2]\";s:22:\"ships/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"ships/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"ships/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"ships/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"ships/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"ships/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"faq/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"faq/([^/]+)/embed/?$\";s:36:\"index.php?faq=$matches[1]&embed=true\";s:24:\"faq/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:44:\"faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:39:\"faq/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:32:\"faq/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:28:\"faq/([^/]+)(?:/([0-9]+))?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"faq/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"category-faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?create_taxonomy_faq=$matches[1]&feed=$matches[2]\";s:48:\"category-faq/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?create_taxonomy_faq=$matches[1]&feed=$matches[2]\";s:29:\"category-faq/([^/]+)/embed/?$\";s:52:\"index.php?create_taxonomy_faq=$matches[1]&embed=true\";s:41:\"category-faq/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?create_taxonomy_faq=$matches[1]&paged=$matches[2]\";s:23:\"category-faq/([^/]+)/?$\";s:41:\"index.php?create_taxonomy_faq=$matches[1]\";s:48:\"tag-faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?faq-tag=$matches[1]&feed=$matches[2]\";s:43:\"tag-faq/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?faq-tag=$matches[1]&feed=$matches[2]\";s:24:\"tag-faq/([^/]+)/embed/?$\";s:40:\"index.php?faq-tag=$matches[1]&embed=true\";s:36:\"tag-faq/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?faq-tag=$matches[1]&paged=$matches[2]\";s:18:\"tag-faq/([^/]+)/?$\";s:29:\"index.php?faq-tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=17&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: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]\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:3:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:35:\"crop-thumbnails/crop-thumbnails.php\";}','yes'),(36,'category_base','/category','yes'),(37,'ping_sites','http://rpc.pingomatic.com/','yes'),(38,'comment_max_links','2','yes'),(39,'gmt_offset','0','yes'),(40,'default_email_category','1','yes'),(41,'recently_edited','','no'),(42,'template','royal-caribbean-digital','yes'),(43,'stylesheet','royal-caribbean-digital','yes'),(44,'comment_whitelist','1','yes'),(45,'blacklist_keys','','no'),(46,'comment_registration','0','yes'),(47,'html_type','text/html','yes'),(48,'use_trackback','0','yes'),(49,'default_role','subscriber','yes'),(50,'db_version','44719','yes'),(51,'uploads_use_yearmonth_folders','1','yes'),(52,'upload_path','','yes'),(53,'blog_public','1','yes'),(54,'default_link_category','2','yes'),(55,'show_on_front','page','yes'),(56,'tag_base','/tag','yes'),(57,'show_avatars','1','yes'),(58,'avatar_rating','G','yes'),(59,'upload_url_path','','yes'),(60,'thumbnail_size_w','150','yes'),(61,'thumbnail_size_h','150','yes'),(62,'thumbnail_crop','1','yes'),(63,'medium_size_w','300','yes'),(64,'medium_size_h','300','yes'),(65,'avatar_default','mystery','yes'),(66,'large_size_w','1024','yes'),(67,'large_size_h','1024','yes'),(68,'image_default_link_type','none','yes'),(69,'image_default_size','','yes'),(70,'image_default_align','','yes'),(71,'close_comments_for_old_posts','0','yes'),(72,'close_comments_days_old','14','yes'),(73,'thread_comments','1','yes'),(74,'thread_comments_depth','5','yes'),(75,'page_comments','0','yes'),(76,'comments_per_page','50','yes'),(77,'default_comments_page','newest','yes'),(78,'comment_order','asc','yes'),(79,'sticky_posts','a:0:{}','yes'),(80,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(83,'uninstall_plugins','a:0:{}','no'),(84,'timezone_string','','yes'),(85,'page_for_posts','203','yes'),(86,'page_on_front','17','yes'),(87,'default_post_format','0','yes'),(88,'link_manager_enabled','0','yes'),(89,'finished_splitting_shared_terms','1','yes'),(90,'site_icon','0','yes'),(91,'medium_large_size_w','768','yes'),(92,'medium_large_size_h','0','yes'),(93,'wp_page_for_privacy_policy','3','yes'),(94,'show_comments_cookies_opt_in','0','yes'),(95,'initial_db_version','38590','yes'),(96,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(97,'fresh_site','0','yes'),(98,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(104,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:0:{}s:5:\"count\";i:0;}','no'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'nonce_key','g-T j:$djU&P->Wr.d6M]ZNi#2z,r$gn_J.<@hh665{tZs]mpDfAN)S8ZwO@Rkkl','no'),(112,'nonce_salt','N7)2ZMRA9[-<~O#G/#&TQj~4y{*N1:O}fx*=;L)W~([Xk}~hML1/v@$nfm0}It?[','no'),(113,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'cron','a:5:{i:1646663012;a:4:{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;}}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:1646663022;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:1646672109;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:1646686377;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;}}}s:7:\"version\";i:2;}','yes'),(117,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1561559035;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(123,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1646662967;s:7:\"checked\";a:5:{s:23:\"royal-caribbean-digital\";s:5:\"1.0.0\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:4:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.6.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(124,'auth_key','BA@k03SgfEWGhXBGygzMs&2hzvd6uxL!4BZg[GTkLgmdPytAa|+V+HMD;PEl?D&F','no'),(125,'auth_salt','h?Z&JGi=O2u5wU$dZ+>eD1Bo*iI5c+fCU}*~PIhiea(K(/(,~X,$,S:(+Rqk9o|t','no'),(126,'logged_in_key','_[*wp;zx_rz|=*J#h|`<F5emLd{M>$D~abs:K?Ks*W[a^6{pW1xTO]0eZ+`D?uoW','no'),(127,'logged_in_salt',')?i$!?2bO97XZDw.(X4R/x!-&)@CNjkR3hCyCMM#/:P V$T(c{ty/ 4*87Kfa[(b','no'),(146,'recently_activated','a:0:{}','yes'),(147,'template_root','/themes','yes'),(148,'stylesheet_root','/themes','yes'),(149,'current_theme','Royal Caribbean Digital Site','yes'),(150,'theme_mods_royal-caribbean-digital','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:6:\"brands\";i:2;s:4:\"news\";i:3;s:6:\"engage\";i:4;s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(151,'theme_switched','','yes'),(363,'acf_version','5.8.2','yes'),(366,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3NjoiYjNKa1pYSmZhV1E5TVRZMU5EVXhmSFI1Y0dVOVpHVjJaV3h2Y0dWeWZHUmhkR1U5TWpBeE9TMHdOeTB4TlNBeE5Ub3pORG96TlE9PSI7czozOiJ1cmwiO3M6Mjg6Imh0dHA6Ly9yb3lhbGRpZ2l0YWwubGFiY3AuY28iO30=','yes'),(371,'db_upgraded','','yes'),(375,'recovery_keys','a:0:{}','yes'),(381,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(383,'options_link-facebook','https://www.facebook.com/royalcaribbean/','no'),(384,'_options_link-facebook','field_5d2cbcb54200a','no'),(385,'options_link-twitter','https://twitter.com/RoyalCaribbean','no'),(386,'_options_link-twitter','field_5d2cbcd44200b','no'),(387,'options_link-youtube','https://www.youtube.com/user/RoyalCaribbeanIntl','no'),(388,'_options_link-youtube','field_5d2cbcf14200c','no'),(389,'options_link-instagram','https://www.instagram.com/royalcaribbean/?hl=en','no'),(390,'_options_link-instagram','field_5d2cbd024200d','no'),(462,'can_compress_scripts','0','no'),(472,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.1.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1563475040;s:7:\"version\";s:5:\"5.1.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(478,'wp_mail_smtp_initial_version','1.5.2','no'),(479,'wp_mail_smtp_version','1.5.2','no'),(480,'wp_mail_smtp','a:6:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:14:\"dev@cappen.com\";s:9:\"from_name\";s:23:\"Royal Caribbean Digital\";s:6:\"mailer\";s:8:\"sendgrid\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";s:3:\"yes\";s:4:\"auth\";s:3:\"yes\";s:4:\"host\";s:16:\"smtp.mailgun.org\";s:10:\"encryption\";s:3:\"tls\";s:4:\"port\";s:3:\"587\";s:4:\"user\";s:62:\"postmaster@sandboxfcbc3ec5d7a449c88927ab90c47a7cf1.mailgun.org\";s:4:\"pass\";s:50:\"adc85b803702722ffcd114eb37b49575-fd0269a6-1043b6da\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:50:\"5507c0eb8e2248051e5a5f6429d09246-fd0269a6-4f8eadbb\";s:6:\"domain\";s:78:\"https://api.mailgun.net/v3/sandboxfcbc3ec5d7a449c88927ab90c47a7cf1.mailgun.org\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:69:\"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\";}s:7:\"general\";a:2:{s:23:\"am_notifications_hidden\";b:0;s:9:\"uninstall\";b:0;}}','no'),(481,'_amn_smtp_last_checked','1565222400','yes'),(482,'wp_mail_smtp_debug','a:1:{i:0;s:425:\"Mailer: SendGrid\r\nThe from object must be provided for every email send. It is an object that requires the email parameter, but may also contain a name parameter.  e.g. {&quot;email&quot; : &quot;example@example.com&quot;}  or {&quot;email&quot; : &quot;example@example.com&quot;, &quot;name&quot; : &quot;Example Recipient&quot;}. - from.email; http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.from\";}','no'),(495,'swpsmtp_options','a:8:{s:16:\"from_email_field\";s:18:\"targino@cappen.com\";s:15:\"from_name_field\";s:7:\"Targino\";s:23:\"force_from_name_replace\";b:0;s:13:\"smtp_settings\";a:9:{s:4:\"host\";s:16:\"smtp.mailtrap.io\";s:15:\"type_encryption\";s:4:\"none\";s:4:\"port\";s:3:\"587\";s:13:\"autentication\";s:2:\"no\";s:8:\"username\";s:14:\"25f71b74e171fd\";s:8:\"password\";s:20:\"MDUzODQ2MTQzZTVlMmQ=\";s:12:\"enable_debug\";b:0;s:12:\"insecure_ssl\";b:0;s:12:\"encrypt_pass\";b:0;}s:15:\"allowed_domains\";s:28:\"cm95YWxkaWdpdGFsLmxhYmNwLmNv\";s:14:\"reply_to_email\";s:14:\"dev@cappen.com\";s:17:\"email_ignore_list\";s:0:\"\";s:19:\"enable_domain_check\";b:0;}','yes'),(496,'smtp_test_mail','a:3:{s:10:\"swpsmtp_to\";s:18:\"douglas@cappen.com\";s:15:\"swpsmtp_subject\";s:4:\"Test\";s:15:\"swpsmtp_message\";s:4:\"Test\";}','yes'),(598,'category_children','a:0:{}','yes'),(774,'WPLANG','','yes'),(775,'new_admin_email','dev@cappen.com','yes'),(1182,'max_file_size','67108864','yes'),(1923,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1646662966;s:8:\"response\";a:3:{s:35:\"crop-thumbnails/crop-thumbnails.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/crop-thumbnails\";s:4:\"slug\";s:15:\"crop-thumbnails\";s:6:\"plugin\";s:35:\"crop-thumbnails/crop-thumbnails.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/crop-thumbnails/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/crop-thumbnails.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/crop-thumbnails/assets/icon.svg?rev=1228698\";s:3:\"svg\";s:60:\"https://ps.w.org/crop-thumbnails/assets/icon.svg?rev=1228698\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/crop-thumbnails/assets/banner-1544x500.jpg?rev=626571\";s:2:\"1x\";s:69:\"https://ps.w.org/crop-thumbnails/assets/banner-772x250.jpg?rev=626571\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.8.0\";s:12:\"requires_php\";s:5:\"5.6.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2468655\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2468655\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":8:{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:4:\"5.12\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"5.9.1\";s:7:\"package\";s:279:\"https://connect.advancedcustomfields.com/v2/plugins/download?token=eyJwIjoicHJvIiwiayI6ImIzSmtaWEpmYVdROU1UWTFORFV4ZkhSNWNHVTlaR1YyWld4dmNHVnlmR1JoZEdVOU1qQXhPUzB3TnkweE5TQXhOVG96TkRvek5RPT0iLCJ3cF91cmwiOiJodHRwOlwvXC9yb3lhbGRpZ2l0YWwubGFiY3AuY28iLCJ3cF92ZXJzaW9uIjoiNS4yLjQifQ==\";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:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"18.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}}}','no'),(1977,'create_subcategory_faq_children','a:0:{}','yes'),(2056,'create_taxonomy_faq_children','a:0:{}','yes'),(2567,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:10:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.9.1\";s:7:\"version\";s:5:\"5.9.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.9.1\";s:7:\"version\";s:5:\"5.9.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.9.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.9-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.9-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.9\";s:7:\"version\";s:3:\"5.9\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.8.3\";s:7:\"version\";s:5:\"5.8.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.5\";s:7:\"version\";s:5:\"5.7.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.6.7\";s:7:\"version\";s:5:\"5.6.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.8\";s:7:\"version\";s:5:\"5.5.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:7;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.9.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.9-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.9-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.9\";s:7:\"version\";s:5:\"5.4.9\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:8;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.3.11.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.3.11.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.11-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.3.11-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.3.11\";s:7:\"version\";s:6:\"5.3.11\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:9;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.14.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.14.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.14-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.2.14-new-bundled.zip\";s:7:\"partial\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.14-partial-4.zip\";s:8:\"rollback\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.14-rollback-4.zip\";}s:7:\"current\";s:6:\"5.2.14\";s:7:\"version\";s:6:\"5.2.14\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:5:\"5.2.4\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1646662966;s:15:\"version_checked\";s:5:\"5.2.4\";s:12:\"translations\";a:0:{}}','no'),(6546,'_transient_timeout_acf_plugin_updates','1646835766','no'),(6547,'_transient_acf_plugin_updates','a:4:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{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:4:\"5.12\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"5.9.1\";s:7:\"package\";s:279:\"https://connect.advancedcustomfields.com/v2/plugins/download?token=eyJwIjoicHJvIiwiayI6ImIzSmtaWEpmYVdROU1UWTFORFV4ZkhSNWNHVTlaR1YyWld4dmNHVnlmR1JoZEdVOU1qQXhPUzB3TnkweE5TQXhOVG96TkRvek5RPT0iLCJ3cF91cmwiOiJodHRwOlwvXC9yb3lhbGRpZ2l0YWwubGFiY3AuY28iLCJ3cF92ZXJzaW9uIjoiNS4yLjQifQ==\";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:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.8.2\";}}','no'),(6548,'_site_transient_timeout_theme_roots','1646664767','no'),(6549,'_site_transient_theme_roots','a:5:{s:23:\"royal-caribbean-digital\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:58:\"/home/forge/royaldigital.labcp.co/web/wp/wp-content/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:58:\"/home/forge/royaldigital.labcp.co/web/wp/wp-content/themes\";s:13:\"twentysixteen\";s:58:\"/home/forge/royaldigital.labcp.co/web/wp/wp-content/themes\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (9,7,'_edit_last','1'),(10,7,'_edit_lock','1562187086:1'),(11,7,'_wp_page_template','page-contact.php'),(22,17,'_edit_lock','1595546121:9'),(23,17,'_wp_page_template','page-home.php'),(78,25,'_menu_item_type','post_type'),(79,25,'_menu_item_menu_item_parent','0'),(80,25,'_menu_item_object_id','7'),(81,25,'_menu_item_object','page'),(82,25,'_menu_item_target',''),(83,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(84,25,'_menu_item_xfn',''),(85,25,'_menu_item_url',''),(105,28,'_menu_item_type','custom'),(106,28,'_menu_item_menu_item_parent','0'),(107,28,'_menu_item_object_id','28'),(108,28,'_menu_item_object','custom'),(109,28,'_menu_item_target',''),(110,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(111,28,'_menu_item_xfn',''),(112,28,'_menu_item_url','https://www.royalcaribbean.com/terms-and-conditions/digital-terms-of-use-and-end-user-license-agreement'),(114,29,'_menu_item_type','custom'),(115,29,'_menu_item_menu_item_parent','0'),(116,29,'_menu_item_object_id','29'),(117,29,'_menu_item_object','custom'),(118,29,'_menu_item_target',''),(119,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(120,29,'_menu_item_xfn',''),(121,29,'_menu_item_url','https://www.royalcaribbean.com/resources/privacy-policy'),(123,30,'_menu_item_type','post_type'),(124,30,'_menu_item_menu_item_parent','0'),(125,30,'_menu_item_object_id','7'),(126,30,'_menu_item_object','page'),(127,30,'_menu_item_target',''),(128,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(129,30,'_menu_item_xfn',''),(130,30,'_menu_item_url',''),(132,31,'_edit_last','1'),(133,31,'_edit_lock','1563213290:1'),(134,36,'_edit_last','1'),(135,36,'_edit_lock','1592233696:9'),(136,17,'_edit_last','2'),(137,17,'title_hero','Welcome to the<br> digital future of<br> cruising'),(138,17,'_title_hero','field_5d2cbfcfc7b2b'),(139,39,'title_hero','Solving for the digital future of cruising'),(140,39,'_title_hero','field_5d2cbfcfc7b2b'),(141,45,'_wp_attached_file','2019/07/ships.jpg'),(142,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1069;s:6:\"height\";i:830;s:4:\"file\";s:17:\"2019/07/ships.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ships-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:119;s:1:\"y\";i:0;s:2:\"x2\";i:947;s:2:\"y2\";i:830;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ships-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"ships-768x596.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ships-1024x795.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:795;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ships-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:18:\"ships-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:21;s:1:\"y\";i:0;s:2:\"x2\";i:1043;s:2:\"y2\";i:830;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:17:\"ships-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:111;s:2:\"x2\";i:1069;s:2:\"y2\";i:720;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:18:\"ships-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:58;s:2:\"x2\";i:1069;s:2:\"y2\";i:772;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:17:\"ships-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:58;s:2:\"x2\";i:1069;s:2:\"y2\";i:772;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:17:\"ships-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:119;s:1:\"y\";i:0;s:2:\"x2\";i:947;s:2:\"y2\";i:830;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:17:\"ships-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:119;s:1:\"y\";i:0;s:2:\"x2\";i:947;s:2:\"y2\";i:830;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:17:\"ships-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:14;s:2:\"x2\";i:1069;s:2:\"y2\";i:817;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:18:\"ships-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:114;s:2:\"x2\";i:1069;s:2:\"y2\";i:716;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:17:\"ships-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:2;s:1:\"y\";i:0;s:2:\"x2\";i:1063;s:2:\"y2\";i:830;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:18:\"ships-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:80;s:2:\"x2\";i:1069;s:2:\"y2\";i:751;s:14:\"original_width\";i:1069;s:15:\"original_height\";i:830;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(143,17,'title_quote','Tech that'),(144,17,'_title_quote','field_5d2cc09b51dfa'),(145,17,'title_strong_quote','ships'),(146,17,'_title_strong_quote','field_5d2cc0db51dfc'),(147,17,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(148,17,'_description_quote','field_5d2cc0a851dfb'),(149,17,'imagem_quote','45'),(150,17,'_imagem_quote','field_5d2cc0ed51dfd'),(151,46,'title_hero','Solving for the digital future of cruising'),(152,46,'_title_hero','field_5d2cbfcfc7b2b'),(153,46,'title_quote','Tech that'),(154,46,'_title_quote','field_5d2cc09b51dfa'),(155,46,'title_strong_quote','ships'),(156,46,'_title_strong_quote','field_5d2cc0db51dfc'),(157,46,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(158,46,'_description_quote','field_5d2cc0a851dfb'),(159,46,'imagem_quote','45'),(160,46,'_imagem_quote','field_5d2cc0ed51dfd'),(161,17,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(162,17,'_description_blockquote','field_5d2cc22c9da9a'),(163,17,'author_blockquote','Richard Fain, in an interview with'),(164,17,'_author_blockquote','field_5d2cc25a9da9b'),(165,17,'company','TechRepublic'),(166,17,'_company','field_5d2cc2769da9c'),(167,51,'title_hero','Solving for the digital future of cruising'),(168,51,'_title_hero','field_5d2cbfcfc7b2b'),(169,51,'title_quote','Tech that'),(170,51,'_title_quote','field_5d2cc09b51dfa'),(171,51,'title_strong_quote','ships'),(172,51,'_title_strong_quote','field_5d2cc0db51dfc'),(173,51,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(174,51,'_description_quote','field_5d2cc0a851dfb'),(175,51,'imagem_quote','45'),(176,51,'_imagem_quote','field_5d2cc0ed51dfd'),(177,51,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(178,51,'_description_blockquote','field_5d2cc22c9da9a'),(179,51,'author_blockquote','Richard Fain, in an interview with'),(180,51,'_author_blockquote','field_5d2cc25a9da9b'),(181,51,'company','TechRepublic'),(182,51,'_company','field_5d2cc2769da9c'),(183,17,'company_blockquote','TechRepublic'),(184,17,'_company_blockquote','field_5d2cc2769da9c'),(185,52,'title_hero','Solving for the digital future of cruising'),(186,52,'_title_hero','field_5d2cbfcfc7b2b'),(187,52,'title_quote','Tech that'),(188,52,'_title_quote','field_5d2cc09b51dfa'),(189,52,'title_strong_quote','ships'),(190,52,'_title_strong_quote','field_5d2cc0db51dfc'),(191,52,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(192,52,'_description_quote','field_5d2cc0a851dfb'),(193,52,'imagem_quote','45'),(194,52,'_imagem_quote','field_5d2cc0ed51dfd'),(195,52,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(196,52,'_description_blockquote','field_5d2cc22c9da9a'),(197,52,'author_blockquote','Richard Fain, in an interview with'),(198,52,'_author_blockquote','field_5d2cc25a9da9b'),(199,52,'company','TechRepublic'),(200,52,'_company','field_5d2cc2769da9c'),(201,52,'company_blockquote','TechRepublic'),(202,52,'_company_blockquote','field_5d2cc2769da9c'),(203,17,'title_featured_i','Self service'),(204,17,'_title_featured_i','field_5d2cc41890f84'),(205,17,'description_featured_i','All you need to begin the check-in process is a smile.'),(206,17,'_description_featured_i','field_5d2cc42890f85'),(207,17,'seletc_type_link_featured_i','Link'),(208,17,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(209,17,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(210,17,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(211,58,'title_hero','Solving for the digital future of cruising'),(212,58,'_title_hero','field_5d2cbfcfc7b2b'),(213,58,'title_quote','Tech that'),(214,58,'_title_quote','field_5d2cc09b51dfa'),(215,58,'title_strong_quote','ships'),(216,58,'_title_strong_quote','field_5d2cc0db51dfc'),(217,58,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(218,58,'_description_quote','field_5d2cc0a851dfb'),(219,58,'imagem_quote','45'),(220,58,'_imagem_quote','field_5d2cc0ed51dfd'),(221,58,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(222,58,'_description_blockquote','field_5d2cc22c9da9a'),(223,58,'author_blockquote','Richard Fain, in an interview with'),(224,58,'_author_blockquote','field_5d2cc25a9da9b'),(225,58,'company','TechRepublic'),(226,58,'_company','field_5d2cc2769da9c'),(227,58,'company_blockquote','TechRepublic'),(228,58,'_company_blockquote','field_5d2cc2769da9c'),(229,58,'title_featured_i','Tech EDGE'),(230,58,'_title_featured_i','field_5d2cc41890f84'),(231,58,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(232,58,'_description_featured_i','field_5d2cc42890f85'),(233,58,'seletc_type_link_featured_i','link: Link'),(234,58,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(235,58,'link_news_or_link_video_featured_i',''),(236,58,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(237,59,'title_hero','Solving for the digital future of cruising'),(238,59,'_title_hero','field_5d2cbfcfc7b2b'),(239,59,'title_quote','Tech that'),(240,59,'_title_quote','field_5d2cc09b51dfa'),(241,59,'title_strong_quote','ships'),(242,59,'_title_strong_quote','field_5d2cc0db51dfc'),(243,59,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(244,59,'_description_quote','field_5d2cc0a851dfb'),(245,59,'imagem_quote','45'),(246,59,'_imagem_quote','field_5d2cc0ed51dfd'),(247,59,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(248,59,'_description_blockquote','field_5d2cc22c9da9a'),(249,59,'author_blockquote','Richard Fain, in an interview with'),(250,59,'_author_blockquote','field_5d2cc25a9da9b'),(251,59,'company','TechRepublic'),(252,59,'_company','field_5d2cc2769da9c'),(253,59,'company_blockquote','TechRepublic'),(254,59,'_company_blockquote','field_5d2cc2769da9c'),(255,59,'title_featured_i','Tech EDGE'),(256,59,'_title_featured_i','field_5d2cc41890f84'),(257,59,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(258,59,'_description_featured_i','field_5d2cc42890f85'),(259,59,'seletc_type_link_featured_i','Link'),(260,59,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(261,59,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(262,59,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(263,61,'_wp_attached_file','2019/07/edge.jpg'),(264,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1496;s:6:\"height\";i:940;s:4:\"file\";s:16:\"2019/07/edge.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"edge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"edge-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"edge-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"edge-1024x643.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"edge-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:17:\"edge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1451;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:16:\"edge-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1451;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:16:\"edge-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:45;s:2:\"x2\";i:1496;s:2:\"y2\";i:896;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:16:\"edge-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:16:\"edge-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:16:\"edge-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:147;s:1:\"y\";i:0;s:2:\"x2\";i:1351;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:17:\"edge-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:49;s:2:\"x2\";i:1496;s:2:\"y2\";i:891;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:14:\"featured-index\";a:5:{s:4:\"file\";s:17:\"edge-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:166;s:1:\"y\";i:0;s:2:\"x2\";i:1325;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:16:\"edge-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:121;s:1:\"y\";i:0;s:2:\"x2\";i:1373;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:17:\"edge-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:0;s:2:\"x2\";i:1496;s:2:\"y2\";i:937;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(265,17,'imagem_featured_i','361'),(266,17,'_imagem_featured_i','field_5d2cc71559443'),(267,62,'title_hero','Solving for the digital future of cruising'),(268,62,'_title_hero','field_5d2cbfcfc7b2b'),(269,62,'title_quote','Tech that'),(270,62,'_title_quote','field_5d2cc09b51dfa'),(271,62,'title_strong_quote','ships'),(272,62,'_title_strong_quote','field_5d2cc0db51dfc'),(273,62,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(274,62,'_description_quote','field_5d2cc0a851dfb'),(275,62,'imagem_quote','45'),(276,62,'_imagem_quote','field_5d2cc0ed51dfd'),(277,62,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(278,62,'_description_blockquote','field_5d2cc22c9da9a'),(279,62,'author_blockquote','Richard Fain, in an interview with'),(280,62,'_author_blockquote','field_5d2cc25a9da9b'),(281,62,'company','TechRepublic'),(282,62,'_company','field_5d2cc2769da9c'),(283,62,'company_blockquote','TechRepublic'),(284,62,'_company_blockquote','field_5d2cc2769da9c'),(285,62,'title_featured_i','Tech EDGE'),(286,62,'_title_featured_i','field_5d2cc41890f84'),(287,62,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(288,62,'_description_featured_i','field_5d2cc42890f85'),(289,62,'seletc_type_link_featured_i','Link'),(290,62,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(291,62,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(292,62,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(293,62,'imagem_featured_i','61'),(294,62,'_imagem_featured_i','field_5d2cc71559443'),(295,17,'title_info_numbers','Digital by<br> the numbers'),(296,17,'_title_info_numbers','field_5d2cc7e517635'),(297,17,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(298,17,'_description_info_number','field_5d2cc7f817636'),(299,17,'app_downloads','3.5M'),(300,17,'_app_downloads','field_5d2cc83e17637'),(301,17,'active_users','1M'),(302,17,'_active_users','field_5d2cc84617638'),(303,17,'average_ios_rating','4.6'),(304,17,'_average_ios_rating','field_5d2cc85217639'),(305,17,'crew_checkins','52k'),(306,17,'_crew_checkins','field_5d2cc8631763a'),(307,70,'title_hero','Solving for the digital future of cruising'),(308,70,'_title_hero','field_5d2cbfcfc7b2b'),(309,70,'title_quote','Tech that'),(310,70,'_title_quote','field_5d2cc09b51dfa'),(311,70,'title_strong_quote','ships'),(312,70,'_title_strong_quote','field_5d2cc0db51dfc'),(313,70,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(314,70,'_description_quote','field_5d2cc0a851dfb'),(315,70,'imagem_quote','45'),(316,70,'_imagem_quote','field_5d2cc0ed51dfd'),(317,70,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(318,70,'_description_blockquote','field_5d2cc22c9da9a'),(319,70,'author_blockquote','Richard Fain, in an interview with'),(320,70,'_author_blockquote','field_5d2cc25a9da9b'),(321,70,'company','TechRepublic'),(322,70,'_company','field_5d2cc2769da9c'),(323,70,'company_blockquote','TechRepublic'),(324,70,'_company_blockquote','field_5d2cc2769da9c'),(325,70,'title_featured_i','Tech EDGE'),(326,70,'_title_featured_i','field_5d2cc41890f84'),(327,70,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(328,70,'_description_featured_i','field_5d2cc42890f85'),(329,70,'seletc_type_link_featured_i','Link'),(330,70,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(331,70,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(332,70,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(333,70,'imagem_featured_i','61'),(334,70,'_imagem_featured_i','field_5d2cc71559443'),(335,70,'title_info_numbers','Digital by<br> the numbers'),(336,70,'_title_info_numbers','field_5d2cc7e517635'),(337,70,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(338,70,'_description_info_number','field_5d2cc7f817636'),(339,70,'app_downloads','2M'),(340,70,'_app_downloads','field_5d2cc83e17637'),(341,70,'active_users','900K'),(342,70,'_active_users','field_5d2cc84617638'),(343,70,'average_ios_rating','4.6'),(344,70,'_average_ios_rating','field_5d2cc85217639'),(345,70,'crew_checkins','14k'),(346,70,'_crew_checkins','field_5d2cc8631763a'),(347,77,'_wp_attached_file','2019/07/kitchen.jpg'),(348,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1497;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2019/07/kitchen.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"kitchen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1218;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"kitchen-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"kitchen-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"kitchen-1024x643.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"kitchen-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:20:\"kitchen-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:170;s:1:\"y\";i:0;s:2:\"x2\";i:1329;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:19:\"kitchen-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:45;s:2:\"x2\";i:1497;s:2:\"y2\";i:896;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:20:\"kitchen-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1452;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:19:\"kitchen-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1452;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:19:\"kitchen-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1218;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:19:\"kitchen-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1218;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:19:\"kitchen-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:121;s:1:\"y\";i:0;s:2:\"x2\";i:1374;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:20:\"kitchen-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:49;s:2:\"x2\";i:1497;s:2:\"y2\";i:891;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:19:\"kitchen-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:147;s:1:\"y\";i:0;s:2:\"x2\";i:1351;s:2:\"y2\";i:940;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:20:\"kitchen-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:0;s:2:\"x2\";i:1497;s:2:\"y2\";i:937;s:14:\"original_width\";i:1497;s:15:\"original_height\";i:940;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(349,17,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(350,17,'_title_featured_ii','field_5d2cc9741153c'),(351,17,'description_featured_ii',''),(352,17,'_description_featured_ii','field_5d2cc97e1153d'),(353,17,'imagem_featured_ii','45'),(354,17,'_imagem_featured_ii','field_5d2cc98c1153e'),(355,17,'seletc_type_link_featured_ii','Link'),(356,17,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(357,17,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(358,17,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(359,78,'title_hero','Solving for the digital future of cruising'),(360,78,'_title_hero','field_5d2cbfcfc7b2b'),(361,78,'title_quote','Tech that'),(362,78,'_title_quote','field_5d2cc09b51dfa'),(363,78,'title_strong_quote','ships'),(364,78,'_title_strong_quote','field_5d2cc0db51dfc'),(365,78,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(366,78,'_description_quote','field_5d2cc0a851dfb'),(367,78,'imagem_quote','45'),(368,78,'_imagem_quote','field_5d2cc0ed51dfd'),(369,78,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(370,78,'_description_blockquote','field_5d2cc22c9da9a'),(371,78,'author_blockquote','Richard Fain, in an interview with'),(372,78,'_author_blockquote','field_5d2cc25a9da9b'),(373,78,'company','TechRepublic'),(374,78,'_company','field_5d2cc2769da9c'),(375,78,'company_blockquote','TechRepublic'),(376,78,'_company_blockquote','field_5d2cc2769da9c'),(377,78,'title_featured_i','Tech EDGE'),(378,78,'_title_featured_i','field_5d2cc41890f84'),(379,78,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(380,78,'_description_featured_i','field_5d2cc42890f85'),(381,78,'seletc_type_link_featured_i','Link'),(382,78,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(383,78,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(384,78,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(385,78,'imagem_featured_i','61'),(386,78,'_imagem_featured_i','field_5d2cc71559443'),(387,78,'title_info_numbers','Digital by<br> the numbers'),(388,78,'_title_info_numbers','field_5d2cc7e517635'),(389,78,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(390,78,'_description_info_number','field_5d2cc7f817636'),(391,78,'app_downloads','2M'),(392,78,'_app_downloads','field_5d2cc83e17637'),(393,78,'active_users','900K'),(394,78,'_active_users','field_5d2cc84617638'),(395,78,'average_ios_rating','4.6'),(396,78,'_average_ios_rating','field_5d2cc85217639'),(397,78,'crew_checkins','14k'),(398,78,'_crew_checkins','field_5d2cc8631763a'),(399,78,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(400,78,'_title_featured_ii','field_5d2cc9741153c'),(401,78,'description_featured_ii',''),(402,78,'_description_featured_ii','field_5d2cc97e1153d'),(403,78,'imagem_featured_ii','77'),(404,78,'_imagem_featured_ii','field_5d2cc98c1153e'),(405,78,'seletc_type_link_featured_ii','Link'),(406,78,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(407,78,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(408,78,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(409,85,'_wp_attached_file','2019/07/ai.jpg'),(410,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1496;s:6:\"height\";i:940;s:4:\"file\";s:14:\"2019/07/ai.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"ai-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"ai-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"ai-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"ai-1024x643.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"ai-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:15:\"ai-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:166;s:1:\"y\";i:0;s:2:\"x2\";i:1325;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:14:\"ai-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:45;s:2:\"x2\";i:1496;s:2:\"y2\";i:896;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:15:\"ai-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1451;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:14:\"ai-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:42;s:1:\"y\";i:0;s:2:\"x2\";i:1451;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:14:\"ai-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:14:\"ai-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:278;s:1:\"y\";i:0;s:2:\"x2\";i:1217;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:15:\"ai-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:49;s:2:\"x2\";i:1496;s:2:\"y2\";i:891;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:14:\"ai-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:121;s:1:\"y\";i:0;s:2:\"x2\";i:1373;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:15:\"ai-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:0;s:2:\"x2\";i:1496;s:2:\"y2\";i:937;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:14:\"ai-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:147;s:1:\"y\";i:0;s:2:\"x2\";i:1351;s:2:\"y2\";i:940;s:14:\"original_width\";i:1496;s:15:\"original_height\";i:940;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(411,17,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(412,17,'_title_featured_iii','field_5d2ccafff022a'),(413,17,'description_featured_iii',''),(414,17,'_description_featured_iii','field_5d2ccb0cf022b'),(415,17,'imagem_featured_iii','862'),(416,17,'_imagem_featured_iii','field_5d2ccb21f022c'),(417,17,'seletc_type_link_featured_iii','Vídeo'),(418,17,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(419,17,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(420,17,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(421,86,'title_hero','Solving for the digital future of cruising'),(422,86,'_title_hero','field_5d2cbfcfc7b2b'),(423,86,'title_quote','Tech that'),(424,86,'_title_quote','field_5d2cc09b51dfa'),(425,86,'title_strong_quote','ships'),(426,86,'_title_strong_quote','field_5d2cc0db51dfc'),(427,86,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(428,86,'_description_quote','field_5d2cc0a851dfb'),(429,86,'imagem_quote','45'),(430,86,'_imagem_quote','field_5d2cc0ed51dfd'),(431,86,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive in the world we live in.'),(432,86,'_description_blockquote','field_5d2cc22c9da9a'),(433,86,'author_blockquote','Richard Fain, in an interview with'),(434,86,'_author_blockquote','field_5d2cc25a9da9b'),(435,86,'company','TechRepublic'),(436,86,'_company','field_5d2cc2769da9c'),(437,86,'company_blockquote','TechRepublic'),(438,86,'_company_blockquote','field_5d2cc2769da9c'),(439,86,'title_featured_i','Tech EDGE'),(440,86,'_title_featured_i','field_5d2cc41890f84'),(441,86,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(442,86,'_description_featured_i','field_5d2cc42890f85'),(443,86,'seletc_type_link_featured_i','Link'),(444,86,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(445,86,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(446,86,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(447,86,'imagem_featured_i','61'),(448,86,'_imagem_featured_i','field_5d2cc71559443'),(449,86,'title_info_numbers','Digital by<br> the numbers'),(450,86,'_title_info_numbers','field_5d2cc7e517635'),(451,86,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(452,86,'_description_info_number','field_5d2cc7f817636'),(453,86,'app_downloads','2M'),(454,86,'_app_downloads','field_5d2cc83e17637'),(455,86,'active_users','900K'),(456,86,'_active_users','field_5d2cc84617638'),(457,86,'average_ios_rating','4.6'),(458,86,'_average_ios_rating','field_5d2cc85217639'),(459,86,'crew_checkins','14k'),(460,86,'_crew_checkins','field_5d2cc8631763a'),(461,86,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(462,86,'_title_featured_ii','field_5d2cc9741153c'),(463,86,'description_featured_ii',''),(464,86,'_description_featured_ii','field_5d2cc97e1153d'),(465,86,'imagem_featured_ii','77'),(466,86,'_imagem_featured_ii','field_5d2cc98c1153e'),(467,86,'seletc_type_link_featured_ii','Link'),(468,86,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(469,86,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(470,86,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(471,86,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(472,86,'_title_featured_iii','field_5d2ccafff022a'),(473,86,'description_featured_iii',''),(474,86,'_description_featured_iii','field_5d2ccb0cf022b'),(475,86,'imagem_featured_iii','85'),(476,86,'_imagem_featured_iii','field_5d2ccb21f022c'),(477,86,'seletc_type_link_featured_iii','Vídeo'),(478,86,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(479,86,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(480,86,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(481,88,'_edit_last','1'),(482,88,'_edit_lock','1571059384:1'),(483,89,'_edit_last','1'),(484,89,'_edit_lock','1567432715:1'),(485,93,'_edit_last','1'),(486,93,'_edit_lock','1566416637:1'),(489,100,'_wp_attached_file','2019/07/ship-cover.jpg'),(490,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1400;s:4:\"file\";s:22:\"2019/07/ship-cover.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"ship-cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"ship-cover-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"ship-cover-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"ship-cover-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"ship-cover-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:23:\"ship-cover-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:35;s:1:\"y\";i:0;s:2:\"x2\";i:1759;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:22:\"ship-cover-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:189;s:2:\"x2\";i:1800;s:2:\"y2\";i:1212;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:23:\"ship-cover-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:98;s:2:\"x2\";i:1800;s:2:\"y2\";i:1300;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:22:\"ship-cover-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:98;s:2:\"x2\";i:1800;s:2:\"y2\";i:1300;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:22:\"ship-cover-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:22:\"ship-cover-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:22:\"ship-cover-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:23;s:2:\"x2\";i:1800;s:2:\"y2\";i:1375;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:23:\"ship-cover-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:193;s:2:\"x2\";i:1800;s:2:\"y2\";i:1207;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:22:\"ship-cover-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:3;s:1:\"y\";i:0;s:2:\"x2\";i:1795;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:23:\"ship-cover-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:134;s:2:\"x2\";i:1800;s:2:\"y2\";i:1263;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(491,88,'logo_brand','787'),(492,88,'_logo_brand','field_5d2cdc5e11f1f'),(493,88,'title_welcome','Bolder, Better.'),(494,88,'_title_welcome','field_5d2cdc5311f1e'),(495,88,'description_welcome','Our digital team is working with Celebrity Cruises to use leading-edge technology to make the guest journey every bit as rewarding as the destination.'),(496,88,'_description_welcome','field_5d2cdc7811f20'),(497,88,'imagem_welcome','100'),(498,88,'_imagem_welcome','field_5d2cdc8311f21'),(499,107,'_wp_attached_file','2019/07/award-1.png'),(500,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:614;s:6:\"height\";i:196;s:4:\"file\";s:19:\"2019/07/award-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"award-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"award-1-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;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:{}}}'),(501,88,'title_luxury','Luxury meets intuitive service'),(502,88,'_title_luxury','field_5d2cde3d14b3e'),(503,88,'description_luxury','For 25 years, Celebrity Cruises’ outstanding customer service has been the reason our guests cruise with us year after year, and we look forward to partnering with the digital team to give that service a technological spin.'),(504,88,'_description_luxury','field_5d2cde4914b3f'),(505,88,'awards_0_title_awards','Award'),(506,88,'_awards_0_title_awards','field_5d2cdeb514b41'),(507,88,'awards_0_logo_awards','107'),(508,88,'_awards_0_logo_awards','field_5d2cdec114b42'),(509,88,'awards','3'),(510,88,'_awards','field_5d2cde9e14b40'),(511,88,'awards_1_title_awards','Award'),(512,88,'_awards_1_title_awards','field_5d2cdeb514b41'),(513,88,'awards_1_logo_awards','107'),(514,88,'_awards_1_logo_awards','field_5d2cdec114b42'),(515,88,'awards_2_title_awards','Award'),(516,88,'_awards_2_title_awards','field_5d2cdeb514b41'),(517,88,'awards_2_logo_awards','107'),(518,88,'_awards_2_logo_awards','field_5d2cdec114b42'),(519,108,'_edit_last','2'),(520,108,'_edit_lock','1568143200:2'),(521,108,'select_brand','88'),(522,108,'_select_brand','field_5d2cda81bbd5a'),(523,112,'_wp_attached_file','2019/07/ship.png'),(524,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:16:\"2019/07/ship.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ship-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ship-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"ship-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(525,108,'subtitle_ship','Constellation'),(526,108,'_subtitle_ship','field_5d2ce1bd8774a'),(527,108,'description_ship','The Celebrity RevolutionSM will change the way you experience the world aboard Celebrity Constellation.'),(528,108,'_description_ship','field_5d2ce1f38774b'),(529,108,'imagem_ship','112'),(530,108,'_imagem_ship','field_5d2ce2428774c'),(531,113,'_edit_last','2'),(532,113,'_edit_lock','1568143278:2'),(533,113,'select_brand','88'),(534,113,'_select_brand','field_5d2cda81bbd5a'),(535,113,'subtitle_ship','Equinox'),(536,113,'_subtitle_ship','field_5d2ce1bd8774a'),(537,113,'description_ship','Every imaginable comfort complimented by Celebrity\'s unrivaled guest services promises an unsurpassed cruise experience no matter your destination.'),(538,113,'_description_ship','field_5d2ce1f38774b'),(539,113,'imagem_ship','112'),(540,113,'_imagem_ship','field_5d2ce2428774c'),(571,119,'_menu_item_type','post_type'),(572,119,'_menu_item_menu_item_parent','0'),(573,119,'_menu_item_object_id','88'),(574,119,'_menu_item_object','brands'),(575,119,'_menu_item_target',''),(576,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(577,119,'_menu_item_xfn',''),(578,119,'_menu_item_url',''),(579,124,'_wp_attached_file','2019/07/ship-brand.png'),(580,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:22:\"2019/07/ship-brand.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ship-brand-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ship-brand-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"ship-brand-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"ship-brand-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(581,108,'logo_brand_ship','99'),(582,108,'_logo_brand_ship','field_5d2f245a16988'),(583,108,'title_brand_ship','Celebrity Constellation'),(584,108,'_title_brand_ship','field_5d2f247516989'),(585,108,'description_brand_ship','We\'re reigniting your cruise experience through innovation. '),(586,108,'_description_brand_ship','field_5d2f24851698a'),(587,108,'photo_ship','923'),(588,108,'_photo_ship','field_5d2f24901698b'),(589,108,'technology_0_title_technology','Mobile App'),(590,108,'_technology_0_title_technology','field_5d2f2748dcd06'),(591,108,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(592,108,'_technology_0_description_technology','field_5d2f2754dcd07'),(593,108,'technology_0_link_appstore','http://localhost/royal-caribbean-digital'),(594,108,'_technology_0_link_appstore','field_5d2f2772dcd08'),(595,108,'technology_0_link_playstore','http://localhost/royal-caribbean-digital'),(596,108,'_technology_0_link_playstore','field_5d2f277fdcd09'),(597,108,'technology','7'),(598,108,'_technology','field_5d2f2738dcd05'),(599,108,'technology_1_title_technology','Mobile Check-In'),(600,108,'_technology_1_title_technology','field_5d2f2748dcd06'),(601,108,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(602,108,'_technology_1_description_technology','field_5d2f2754dcd07'),(603,108,'technology_1_link_appstore',''),(604,108,'_technology_1_link_appstore','field_5d2f2772dcd08'),(605,108,'technology_1_link_playstore',''),(606,108,'_technology_1_link_playstore','field_5d2f277fdcd09'),(607,134,'_wp_attached_file','2019/07/ship-cover-1.jpg'),(608,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1400;s:4:\"file\";s:24:\"2019/07/ship-cover-1.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ship-cover-1-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ship-cover-1-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"ship-cover-1-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"ship-cover-1-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:25:\"ship-cover-1-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:35;s:1:\"y\";i:0;s:2:\"x2\";i:1759;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:25:\"ship-cover-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:98;s:2:\"x2\";i:1800;s:2:\"y2\";i:1300;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:98;s:2:\"x2\";i:1800;s:2:\"y2\";i:1300;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:189;s:2:\"x2\";i:1800;s:2:\"y2\";i:1212;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:200;s:1:\"y\";i:0;s:2:\"x2\";i:1599;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:23;s:2:\"x2\";i:1800;s:2:\"y2\";i:1375;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:25:\"ship-cover-1-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:193;s:2:\"x2\";i:1800;s:2:\"y2\";i:1207;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:24:\"ship-cover-1-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:3;s:1:\"y\";i:0;s:2:\"x2\";i:1795;s:2:\"y2\";i:1400;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:25:\"ship-cover-1-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:134;s:2:\"x2\";i:1800;s:2:\"y2\";i:1263;s:14:\"original_width\";i:1800;s:15:\"original_height\";i:1400;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(609,108,'discover_ship_title','Discover Celebrity Cruising'),(610,108,'_discover_ship_title','field_5d2f2b854d072'),(611,108,'discover_ship_link','https://www.celebritycruises.com/cruise-ships/celebrity-constellation'),(612,108,'_discover_ship_link','field_5d2f2ba44d073'),(613,108,'discover_ship_photo','452'),(614,108,'_discover_ship_photo','field_5d2f2bbc4d075'),(615,136,'_wp_attached_file','2019/07/placeholder.jpg'),(616,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:740;s:6:\"height\";i:924;s:4:\"file\";s:23:\"2019/07/placeholder.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:92;s:2:\"x2\";i:740;s:2:\"y2\";i:833;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-740x655.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:5:{s:4:\"file\";s:24:\"placeholder-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:161;s:2:\"x2\";i:740;s:2:\"y2\";i:762;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:23:\"placeholder-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:252;s:2:\"x2\";i:740;s:2:\"y2\";i:673;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:24:\"placeholder-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:215;s:2:\"x2\";i:740;s:2:\"y2\";i:709;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:23:\"placeholder-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:215;s:2:\"x2\";i:740;s:2:\"y2\";i:709;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:23:\"placeholder-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:92;s:2:\"x2\";i:740;s:2:\"y2\";i:833;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:23:\"placeholder-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:92;s:2:\"x2\";i:740;s:2:\"y2\";i:833;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:23:\"placeholder-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:185;s:2:\"x2\";i:740;s:2:\"y2\";i:740;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:24:\"placeholder-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:254;s:2:\"x2\";i:740;s:2:\"y2\";i:670;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:23:\"placeholder-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:173;s:2:\"x2\";i:740;s:2:\"y2\";i:751;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:24:\"placeholder-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:230;s:2:\"x2\";i:740;s:2:\"y2\";i:694;s:14:\"original_width\";i:740;s:15:\"original_height\";i:924;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(617,137,'_wp_attached_file','2019/07/placeholder-2.jpg'),(618,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:740;s:6:\"height\";i:420;s:4:\"file\";s:25:\"2019/07/placeholder-2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:160;s:1:\"y\";i:0;s:2:\"x2\";i:579;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"placeholder-2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:30;s:1:\"y\";i:0;s:2:\"x2\";i:709;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:14:\"featured-index\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:111;s:1:\"y\";i:0;s:2:\"x2\";i:628;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:13:\"related-index\";a:5:{s:4:\"file\";s:25:\"placeholder-2-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:0;s:2:\"x2\";i:738;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:55;s:1:\"y\";i:0;s:2:\"x2\";i:684;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:25:\"placeholder-2-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:55;s:1:\"y\";i:0;s:2:\"x2\";i:684;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:25:\"placeholder-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:160;s:1:\"y\";i:0;s:2:\"x2\";i:579;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:25:\"placeholder-2-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:160;s:1:\"y\";i:0;s:2:\"x2\";i:579;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:12:\"list-archive\";a:5:{s:4:\"file\";s:25:\"placeholder-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:90;s:1:\"y\";i:0;s:2:\"x2\";i:649;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:15:\"featured-single\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:1;s:2:\"x2\";i:740;s:2:\"y2\";i:418;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:25:\"placeholder-2-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:100;s:1:\"y\";i:0;s:2:\"x2\";i:637;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:35;s:1:\"y\";i:0;s:2:\"x2\";i:704;s:2:\"y2\";i:420;s:14:\"original_width\";i:740;s:15:\"original_height\";i:420;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(619,108,'gallery',''),(620,108,'_gallery','field_5d2f2c89081ed'),(633,113,'_wp_old_slug','lorem-ipsum__trashed'),(634,113,'logo_brand_ship','99'),(635,113,'_logo_brand_ship','field_5d2f245a16988'),(636,113,'title_brand_ship','Celebrity Equinox'),(637,113,'_title_brand_ship','field_5d2f247516989'),(638,113,'description_brand_ship','Unrivaled surface meets unsurpassed innovation.'),(639,113,'_description_brand_ship','field_5d2f24851698a'),(640,113,'photo_ship','924'),(641,113,'_photo_ship','field_5d2f24901698b'),(642,113,'technology_0_title_technology','Mobile App'),(643,113,'_technology_0_title_technology','field_5d2f2748dcd06'),(644,113,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(645,113,'_technology_0_description_technology','field_5d2f2754dcd07'),(646,113,'technology_0_link_appstore','http://localhost/royal-caribbean-digital'),(647,113,'_technology_0_link_appstore','field_5d2f2772dcd08'),(648,113,'technology_0_link_playstore','http://localhost/royal-caribbean-digital'),(649,113,'_technology_0_link_playstore','field_5d2f277fdcd09'),(650,113,'technology','8'),(651,113,'_technology','field_5d2f2738dcd05'),(652,113,'discover_ship_title','Discover Celebrity Cruising'),(653,113,'_discover_ship_title','field_5d2f2b854d072'),(654,113,'discover_ship_link','https://www.celebritycruises.com/cruise-ships/celebrity-equinox'),(655,113,'_discover_ship_link','field_5d2f2ba44d073'),(656,113,'discover_ship_photo','465'),(657,113,'_discover_ship_photo','field_5d2f2bbc4d075'),(658,113,'gallery','a:5:{i:0;s:3:\"136\";i:1;s:3:\"137\";i:2;s:3:\"464\";i:3;s:3:\"463\";i:4;s:3:\"461\";}'),(659,113,'_gallery','field_5d2f2c89081ed'),(660,139,'_edit_last','2'),(661,139,'_edit_lock','1568998448:2'),(662,140,'_edit_last','2'),(663,140,'_edit_lock','1568143240:2'),(664,141,'_edit_last','2'),(665,141,'_edit_lock','1568143408:2'),(666,140,'select_brand','88'),(667,140,'_select_brand','field_5d2cda81bbd5a'),(668,140,'subtitle_ship','Millenium'),(669,140,'_subtitle_ship','field_5d2ce1bd8774a'),(670,140,'description_ship','Millenium has the capacity to hold more than 2,000 passengers, and our goal is to wow every one of them. '),(671,140,'_description_ship','field_5d2ce1f38774b'),(672,140,'imagem_ship','112'),(673,140,'_imagem_ship','field_5d2ce2428774c'),(674,140,'logo_brand_ship','739'),(675,140,'_logo_brand_ship','field_5d2f245a16988'),(676,140,'title_brand_ship','Celebrity Millenium'),(677,140,'_title_brand_ship','field_5d2f247516989'),(678,140,'description_brand_ship','Fulfilling the promise of modernity, with new dining, new staterooms, and new memories aboard this fleet favorite.'),(679,140,'_description_brand_ship','field_5d2f24851698a'),(680,140,'photo_ship','923'),(681,140,'_photo_ship','field_5d2f24901698b'),(682,140,'technology_0_title_technology','Mobile App'),(683,140,'_technology_0_title_technology','field_5d2f2748dcd06'),(684,140,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(685,140,'_technology_0_description_technology','field_5d2f2754dcd07'),(686,140,'technology_0_link_appstore','http://localhost/royal-caribbean-digital'),(687,140,'_technology_0_link_appstore','field_5d2f2772dcd08'),(688,140,'technology_0_link_playstore','http://localhost/royal-caribbean-digital'),(689,140,'_technology_0_link_playstore','field_5d2f277fdcd09'),(690,140,'technology_1_title_technology','Mobile Check-In'),(691,140,'_technology_1_title_technology','field_5d2f2748dcd06'),(692,140,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(693,140,'_technology_1_description_technology','field_5d2f2754dcd07'),(694,140,'technology_1_link_appstore',''),(695,140,'_technology_1_link_appstore','field_5d2f2772dcd08'),(696,140,'technology_1_link_playstore',''),(697,140,'_technology_1_link_playstore','field_5d2f277fdcd09'),(698,140,'technology','7'),(699,140,'_technology','field_5d2f2738dcd05'),(700,140,'discover_ship_title','Discover Celebrity Cruising'),(701,140,'_discover_ship_title','field_5d2f2b854d072'),(702,140,'discover_ship_link','https://www.celebritycruises.com/nz/cruise-ships/celebrity-millennium/'),(703,140,'_discover_ship_link','field_5d2f2ba44d073'),(704,140,'discover_ship_photo','454'),(705,140,'_discover_ship_photo','field_5d2f2bbc4d075'),(706,140,'gallery','a:2:{i:0;s:3:\"136\";i:1;s:3:\"134\";}'),(707,140,'_gallery','field_5d2f2c89081ed'),(708,139,'select_brand','88'),(709,139,'_select_brand','field_5d2cda81bbd5a'),(710,139,'subtitle_ship','Edge'),(711,139,'_subtitle_ship','field_5d2ce1bd8774a'),(712,139,'description_ship','Celebrity Edge has been featured prominently since its launch. You really need to see what this ship offers to believe it.'),(713,139,'_description_ship','field_5d2ce1f38774b'),(714,139,'imagem_ship','112'),(715,139,'_imagem_ship','field_5d2ce2428774c'),(716,139,'logo_brand_ship','739'),(717,139,'_logo_brand_ship','field_5d2f245a16988'),(718,139,'title_brand_ship','Celebrity Edge'),(719,139,'_title_brand_ship','field_5d2f247516989'),(720,139,'description_brand_ship','The ship that sets the standard for luxury cruise vacations goes beyond the edge with our in-app, 3-D Access Tour.'),(721,139,'_description_brand_ship','field_5d2f24851698a'),(722,139,'photo_ship','124'),(723,139,'_photo_ship','field_5d2f24901698b'),(724,139,'technology_0_title_technology','Mobile App'),(725,139,'_technology_0_title_technology','field_5d2f2748dcd06'),(726,139,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(727,139,'_technology_0_description_technology','field_5d2f2754dcd07'),(728,139,'technology_0_link_appstore','http://localhost/royal-caribbean-digital'),(729,139,'_technology_0_link_appstore','field_5d2f2772dcd08'),(730,139,'technology_0_link_playstore','http://localhost/royal-caribbean-digital'),(731,139,'_technology_0_link_playstore','field_5d2f277fdcd09'),(732,139,'technology_1_title_technology','Mobile Check-In'),(733,139,'_technology_1_title_technology','field_5d2f2748dcd06'),(734,139,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(735,139,'_technology_1_description_technology','field_5d2f2754dcd07'),(736,139,'technology_1_link_appstore',''),(737,139,'_technology_1_link_appstore','field_5d2f2772dcd08'),(738,139,'technology_1_link_playstore',''),(739,139,'_technology_1_link_playstore','field_5d2f277fdcd09'),(740,139,'technology','10'),(741,139,'_technology','field_5d2f2738dcd05'),(742,139,'discover_ship_title','Discover Celebrity Cruising'),(743,139,'_discover_ship_title','field_5d2f2b854d072'),(744,139,'discover_ship_link','https://www.celebritycruises.com/edge/'),(745,139,'_discover_ship_link','field_5d2f2ba44d073'),(746,139,'discover_ship_photo','100'),(747,139,'_discover_ship_photo','field_5d2f2bbc4d075'),(748,139,'gallery','a:1:{i:0;s:3:\"994\";}'),(749,139,'_gallery','field_5d2f2c89081ed'),(750,141,'select_brand','88'),(751,141,'_select_brand','field_5d2cda81bbd5a'),(752,141,'subtitle_ship','Reflection'),(753,141,'_subtitle_ship','field_5d2ce1bd8774a'),(754,141,'description_ship','Reflect on seamless stateroom entry and state-of-the-art spa treatments and you\'ll see this is the ideal vacation for visionaries.'),(755,141,'_description_ship','field_5d2ce1f38774b'),(756,141,'imagem_ship','112'),(757,141,'_imagem_ship','field_5d2ce2428774c'),(758,141,'logo_brand_ship','739'),(759,141,'_logo_brand_ship','field_5d2f245a16988'),(760,141,'title_brand_ship','Celebrity Reflection'),(761,141,'_title_brand_ship','field_5d2f247516989'),(762,141,'description_brand_ship','Celebrity Reflection® received several new enhancements during her recent dry dock. Now, you can experience a cinematic night under the stars with A Taste of Film at the Rooftop Terrace. It\'s an exciting way to enjoy the great outdoors, satisfy your love of movies, and dazzle your taste buds all at once. And that\'s just the beginning. '),(763,141,'_description_brand_ship','field_5d2f24851698a'),(764,141,'photo_ship','925'),(765,141,'_photo_ship','field_5d2f24901698b'),(766,141,'technology_0_title_technology','Mobile App'),(767,141,'_technology_0_title_technology','field_5d2f2748dcd06'),(768,141,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(769,141,'_technology_0_description_technology','field_5d2f2754dcd07'),(770,141,'technology_0_link_appstore','http://localhost/royal-caribbean-digital'),(771,141,'_technology_0_link_appstore','field_5d2f2772dcd08'),(772,141,'technology_0_link_playstore','http://localhost/royal-caribbean-digital'),(773,141,'_technology_0_link_playstore','field_5d2f277fdcd09'),(774,141,'technology_1_title_technology','Mobile Check-In'),(775,141,'_technology_1_title_technology','field_5d2f2748dcd06'),(776,141,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(777,141,'_technology_1_description_technology','field_5d2f2754dcd07'),(778,141,'technology_1_link_appstore',''),(779,141,'_technology_1_link_appstore','field_5d2f2772dcd08'),(780,141,'technology_1_link_playstore',''),(781,141,'_technology_1_link_playstore','field_5d2f277fdcd09'),(782,141,'technology','6'),(783,141,'_technology','field_5d2f2738dcd05'),(784,141,'discover_ship_title','Discover Celebrity Cruising'),(785,141,'_discover_ship_title','field_5d2f2b854d072'),(786,141,'discover_ship_link','https://www.celebritycruises.com/cruise-ships/celebrity-reflection'),(787,141,'_discover_ship_link','field_5d2f2ba44d073'),(788,141,'discover_ship_photo','456'),(789,141,'_discover_ship_photo','field_5d2f2bbc4d075'),(790,141,'gallery',''),(791,141,'_gallery','field_5d2f2c89081ed'),(792,143,'_edit_last','2'),(793,143,'_edit_lock','1568053449:2'),(794,143,'logo_brand','789'),(795,143,'_logo_brand','field_5d2cdc5e11f1f'),(796,143,'title_welcome','Explore new depths'),(797,143,'_title_welcome','field_5d2cdc5311f1e'),(798,143,'description_welcome','At Azamara, we understand that travel is a very personal endeavor. Our digital experience helps customize unforgettable journeys. '),(799,143,'_description_welcome','field_5d2cdc7811f20'),(800,143,'imagem_welcome','894'),(801,143,'_imagem_welcome','field_5d2cdc8311f21'),(802,143,'title_luxury','Luxury meets intuitive service'),(803,143,'_title_luxury','field_5d2cde3d14b3e'),(804,143,'description_luxury','For 25 years, Celebrity Cruises’ outstanding customer service has been the reason our guests cruise with us year after year, and we look forward to partnering with the digital team to give that service a technological spin.'),(805,143,'_description_luxury','field_5d2cde4914b3f'),(806,143,'awards_0_title_awards','Award'),(807,143,'_awards_0_title_awards','field_5d2cdeb514b41'),(808,143,'awards_0_logo_awards','107'),(809,143,'_awards_0_logo_awards','field_5d2cdec114b42'),(810,143,'awards_1_title_awards','Award'),(811,143,'_awards_1_title_awards','field_5d2cdeb514b41'),(812,143,'awards_1_logo_awards','107'),(813,143,'_awards_1_logo_awards','field_5d2cdec114b42'),(814,143,'awards','2'),(815,143,'_awards','field_5d2cde9e14b40'),(816,144,'_edit_last','1'),(817,144,'logo_brand','790'),(818,144,'_logo_brand','field_5d2cdc5e11f1f'),(819,144,'title_welcome','Tomorrow is already here'),(820,144,'_title_welcome','field_5d2cdc5311f1e'),(821,144,'description_welcome','The company that sets the current standard for cruise vacations is setting its sights on defining the future by using technology to enhance the Guest and employee experience.'),(822,144,'_description_welcome','field_5d2cdc7811f20'),(823,144,'imagem_welcome','922'),(824,144,'_imagem_welcome','field_5d2cdc8311f21'),(825,144,'title_luxury','50 years and counting'),(826,144,'_title_luxury','field_5d2cde3d14b3e'),(827,144,'description_luxury','Royal Caribbean is known for driving innovation at sea and has continuously redefined cruise vacationing since its launch in 1969. '),(828,144,'_description_luxury','field_5d2cde4914b3f'),(829,144,'awards_0_title_awards','Award'),(830,144,'_awards_0_title_awards','field_5d2cdeb514b41'),(831,144,'awards_0_logo_awards','107'),(832,144,'_awards_0_logo_awards','field_5d2cdec114b42'),(833,144,'awards_1_title_awards','Award'),(834,144,'_awards_1_title_awards','field_5d2cdeb514b41'),(835,144,'awards_1_logo_awards','107'),(836,144,'_awards_1_logo_awards','field_5d2cdec114b42'),(837,144,'awards','2'),(838,144,'_awards','field_5d2cde9e14b40'),(839,144,'_edit_lock','1595456193:9'),(840,145,'_menu_item_type','post_type'),(841,145,'_menu_item_menu_item_parent','0'),(842,145,'_menu_item_object_id','144'),(843,145,'_menu_item_object','brands'),(844,145,'_menu_item_target',''),(845,145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(846,145,'_menu_item_xfn',''),(847,145,'_menu_item_url',''),(849,146,'_menu_item_type','post_type'),(850,146,'_menu_item_menu_item_parent','0'),(851,146,'_menu_item_object_id','143'),(852,146,'_menu_item_object','brands'),(853,146,'_menu_item_target',''),(854,146,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(855,146,'_menu_item_xfn',''),(856,146,'_menu_item_url',''),(858,144,'_wp_old_slug','144'),(859,147,'_edit_last','2'),(860,147,'_edit_lock','1568146630:2'),(861,147,'select_brand','143'),(862,147,'_select_brand','field_5d2cda81bbd5a'),(863,147,'subtitle_ship','Azamara Pursuit'),(864,147,'_subtitle_ship','field_5d2ce1bd8774a'),(865,147,'description_ship','We’re opening the door to maiden ports, new itineraries, and unforgettable, unique experiences with Azamara Pursuit. '),(866,147,'_description_ship','field_5d2ce1f38774b'),(867,147,'imagem_ship','112'),(868,147,'_imagem_ship','field_5d2ce2428774c'),(869,147,'logo_brand_ship','746'),(870,147,'_logo_brand_ship','field_5d2f245a16988'),(871,147,'title_brand_ship','Azamara Pursuit'),(872,147,'_title_brand_ship','field_5d2f247516989'),(873,147,'description_brand_ship','In addition to the new ports we\'re looking forward to exploring with you, we’re returning to several destinations with more immersive experiences than ever before. Like our sister ships, Azamara Pursuit offers some of the most extraordinary adventures on Earth, to places you’ve always dreamed of. Or only just heard about.'),(874,147,'_description_brand_ship','field_5d2f24851698a'),(875,147,'photo_ship','933'),(876,147,'_photo_ship','field_5d2f24901698b'),(877,147,'technology_0_title_technology','Mobile App'),(878,147,'_technology_0_title_technology','field_5d2f2748dcd06'),(879,147,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(880,147,'_technology_0_description_technology','field_5d2f2754dcd07'),(881,147,'technology_0_link_appstore',''),(882,147,'_technology_0_link_appstore','field_5d2f2772dcd08'),(883,147,'technology_0_link_playstore',''),(884,147,'_technology_0_link_playstore','field_5d2f277fdcd09'),(885,147,'technology','4'),(886,147,'_technology','field_5d2f2738dcd05'),(887,147,'discover_ship_title','Discover Azamara Cruising'),(888,147,'_discover_ship_title','field_5d2f2b854d072'),(889,147,'discover_ship_link','https://www.azamara.com/our-ships/azamara-pursuit'),(890,147,'_discover_ship_link','field_5d2f2ba44d073'),(891,147,'discover_ship_photo','676'),(892,147,'_discover_ship_photo','field_5d2f2bbc4d075'),(893,147,'gallery','a:3:{i:0;s:3:\"677\";i:1;s:3:\"676\";i:2;s:3:\"670\";}'),(894,147,'_gallery','field_5d2f2c89081ed'),(895,148,'_edit_last','2'),(896,148,'_edit_lock','1568925710:2'),(897,149,'_edit_last','1'),(898,149,'_edit_lock','1568034066:1'),(899,150,'_edit_last','1'),(900,150,'_edit_lock','1568033921:1'),(901,151,'_edit_last','1'),(902,151,'_edit_lock','1568033921:1'),(903,152,'_edit_last','2'),(904,152,'_edit_lock','1568925673:2'),(905,153,'_edit_last','2'),(906,153,'_edit_lock','1568925698:2'),(907,153,'select_brand','144'),(908,153,'_select_brand','field_5d2cda81bbd5a'),(909,153,'subtitle_ship','Mariner of the Seas'),(910,153,'_subtitle_ship','field_5d2ce1bd8774a'),(911,153,'description_ship','If you\'re looking for a break from routine and dull weekends, you\'re in the right place. Mariner is more than happy to help Guests escape the grind.'),(912,153,'_description_ship','field_5d2ce1f38774b'),(913,153,'imagem_ship','112'),(914,153,'_imagem_ship','field_5d2ce2428774c'),(915,153,'logo_brand_ship','750'),(916,153,'_logo_brand_ship','field_5d2f245a16988'),(917,153,'title_brand_ship','Mariner of the Seas'),(918,153,'_title_brand_ship','field_5d2f247516989'),(919,153,'description_brand_ship','You\'re only a few taps away from making the most of your weekend getaway. '),(920,153,'_description_brand_ship','field_5d2f24851698a'),(921,153,'photo_ship','200'),(922,153,'_photo_ship','field_5d2f24901698b'),(923,153,'technology_0_title_technology','Mobile App'),(924,153,'_technology_0_title_technology','field_5d2f2748dcd06'),(925,153,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(926,153,'_technology_0_description_technology','field_5d2f2754dcd07'),(927,153,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(928,153,'_technology_0_link_appstore','field_5d2f2772dcd08'),(929,153,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(930,153,'_technology_0_link_playstore','field_5d2f277fdcd09'),(931,153,'technology','6'),(932,153,'_technology','field_5d2f2738dcd05'),(933,153,'discover_ship_title','Discover Royal Caribbean Cruising'),(934,153,'_discover_ship_title','field_5d2f2b854d072'),(935,153,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/mariner-of-the-seas'),(936,153,'_discover_ship_link','field_5d2f2ba44d073'),(937,153,'discover_ship_photo','511'),(938,153,'_discover_ship_photo','field_5d2f2bbc4d075'),(939,153,'gallery',''),(940,153,'_gallery','field_5d2f2c89081ed'),(941,148,'select_brand','144'),(942,148,'_select_brand','field_5d2cda81bbd5a'),(943,148,'subtitle_ship','Allure of the Seas'),(944,148,'_subtitle_ship','field_5d2ce1bd8774a'),(945,148,'description_ship','Best Large Cruise Ship, Best for Onboard Entertainment, and Best Individual Ship. Find out why Allure of the Seas continues to rack up one award after another.'),(946,148,'_description_ship','field_5d2ce1f38774b'),(947,148,'imagem_ship','112'),(948,148,'_imagem_ship','field_5d2ce2428774c'),(949,148,'logo_brand_ship','750'),(950,148,'_logo_brand_ship','field_5d2f245a16988'),(951,148,'title_brand_ship','Allure of the Seas'),(952,148,'_title_brand_ship','field_5d2f247516989'),(953,148,'description_brand_ship','Experience the next level of interactive offerings onboard our award-winning fleet favorite.'),(954,148,'_description_brand_ship','field_5d2f24851698a'),(955,148,'photo_ship','197'),(956,148,'_photo_ship','field_5d2f24901698b'),(957,148,'technology_0_title_technology','Mobile App'),(958,148,'_technology_0_title_technology','field_5d2f2748dcd06'),(959,148,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(960,148,'_technology_0_description_technology','field_5d2f2754dcd07'),(961,148,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(962,148,'_technology_0_link_appstore','field_5d2f2772dcd08'),(963,148,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(964,148,'_technology_0_link_playstore','field_5d2f277fdcd09'),(965,148,'technology','9'),(966,148,'_technology','field_5d2f2738dcd05'),(967,148,'discover_ship_title','Discover Royal Caribbean Cruising'),(968,148,'_discover_ship_title','field_5d2f2b854d072'),(969,148,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/allure-of-the-seas'),(970,148,'_discover_ship_link','field_5d2f2ba44d073'),(971,148,'discover_ship_photo','471'),(972,148,'_discover_ship_photo','field_5d2f2bbc4d075'),(973,148,'gallery',''),(974,148,'_gallery','field_5d2f2c89081ed'),(975,149,'select_brand','144'),(976,149,'_select_brand','field_5d2cda81bbd5a'),(977,149,'subtitle_ship','Symphony of the Seas'),(978,149,'_subtitle_ship','field_5d2ce1bd8774a'),(979,149,'description_ship','What\'s cool about Symphony of the Seas®? It found the perfect balance of keeping the old favorites while adding new revolutionary ways to have fun.'),(980,149,'_description_ship','field_5d2ce1f38774b'),(981,149,'imagem_ship','112'),(982,149,'_imagem_ship','field_5d2ce2428774c'),(983,149,'logo_brand_ship','750'),(984,149,'_logo_brand_ship','field_5d2f245a16988'),(985,149,'title_brand_ship','Symphony of the Seas'),(986,149,'_title_brand_ship','field_5d2f247516989'),(987,149,'description_brand_ship','From X-ray Vision to in-stateroom streaming, the most recent addition to the Oasis class is bringing the latest digital features to sea.'),(988,149,'_description_brand_ship','field_5d2f24851698a'),(989,149,'photo_ship','195'),(990,149,'_photo_ship','field_5d2f24901698b'),(991,149,'technology_0_title_technology','Mobile App'),(992,149,'_technology_0_title_technology','field_5d2f2748dcd06'),(993,149,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(994,149,'_technology_0_description_technology','field_5d2f2754dcd07'),(995,149,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(996,149,'_technology_0_link_appstore','field_5d2f2772dcd08'),(997,149,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(998,149,'_technology_0_link_playstore','field_5d2f277fdcd09'),(999,149,'technology','9'),(1000,149,'_technology','field_5d2f2738dcd05'),(1001,149,'discover_ship_title','Discover Royal Caribbean Cruising'),(1002,149,'_discover_ship_title','field_5d2f2b854d072'),(1003,149,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/symphony-of-the-seas'),(1004,149,'_discover_ship_link','field_5d2f2ba44d073'),(1005,149,'discover_ship_photo','609'),(1006,149,'_discover_ship_photo','field_5d2f2bbc4d075'),(1007,149,'gallery','a:2:{i:0;s:3:\"136\";i:1;s:3:\"137\";}'),(1008,149,'_gallery','field_5d2f2c89081ed'),(1009,150,'select_brand','144'),(1010,150,'_select_brand','field_5d2cda81bbd5a'),(1011,150,'subtitle_ship','Oasis of the Seas'),(1012,150,'_subtitle_ship','field_5d2ce1bd8774a'),(1013,150,'description_ship','Mark your calendars for late 2019. The original gamechanger underwent a long list of jaw-dropping changes and modernizations. '),(1014,150,'_description_ship','field_5d2ce1f38774b'),(1015,150,'imagem_ship','112'),(1016,150,'_imagem_ship','field_5d2ce2428774c'),(1017,150,'logo_brand_ship','750'),(1018,150,'_logo_brand_ship','field_5d2f245a16988'),(1019,150,'title_brand_ship','Oasis of the Seas'),(1020,150,'_title_brand_ship','field_5d2f247516989'),(1021,150,'description_brand_ship','This reimagined ship introduces bigger onboard adventures and bolder culinary experiences, all available on our mobile app for everyone to explore. '),(1022,150,'_description_brand_ship','field_5d2f24851698a'),(1023,150,'photo_ship','175'),(1024,150,'_photo_ship','field_5d2f24901698b'),(1025,150,'technology_0_title_technology','Mobile App'),(1026,150,'_technology_0_title_technology','field_5d2f2748dcd06'),(1027,150,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1028,150,'_technology_0_description_technology','field_5d2f2754dcd07'),(1029,150,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1030,150,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1031,150,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1032,150,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1033,150,'technology','4'),(1034,150,'_technology','field_5d2f2738dcd05'),(1035,150,'discover_ship_title','Discover Royal Caribbean Cruising'),(1036,150,'_discover_ship_title','field_5d2f2b854d072'),(1037,150,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/oasis-of-the-seas'),(1038,150,'_discover_ship_link','field_5d2f2ba44d073'),(1039,150,'discover_ship_photo','349'),(1040,150,'_discover_ship_photo','field_5d2f2bbc4d075'),(1041,150,'gallery','a:2:{i:0;s:3:\"136\";i:1;s:3:\"137\";}'),(1042,150,'_gallery','field_5d2f2c89081ed'),(1043,151,'select_brand','144'),(1044,151,'_select_brand','field_5d2cda81bbd5a'),(1045,151,'subtitle_ship','Enchantment of the Seas'),(1046,151,'_subtitle_ship','field_5d2ce1bd8774a'),(1047,151,'description_ship','Getting away for a few days is about maximizing your time to enjoy yourself. Whether you want to relax or thrill seek, Enchantment of the Seas® has you covered.'),(1048,151,'_description_ship','field_5d2ce1f38774b'),(1049,151,'imagem_ship','112'),(1050,151,'_imagem_ship','field_5d2ce2428774c'),(1051,151,'logo_brand_ship','750'),(1052,151,'_logo_brand_ship','field_5d2f245a16988'),(1053,151,'title_brand_ship','Enchantment of the Seas'),(1054,151,'_title_brand_ship','field_5d2f247516989'),(1055,151,'description_brand_ship','Whether you\'re craving an island-bound adventure or the perfect dinner date, you\'ll never miss out on your journey to Enchantment.'),(1056,151,'_description_brand_ship','field_5d2f24851698a'),(1057,151,'photo_ship','172'),(1058,151,'_photo_ship','field_5d2f24901698b'),(1059,151,'technology_0_title_technology','Mobile App'),(1060,151,'_technology_0_title_technology','field_5d2f2748dcd06'),(1061,151,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1062,151,'_technology_0_description_technology','field_5d2f2754dcd07'),(1063,151,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1064,151,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1065,151,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1066,151,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1067,151,'technology','6'),(1068,151,'_technology','field_5d2f2738dcd05'),(1069,151,'discover_ship_title','Discover Royal Caribbean Cruising'),(1070,151,'_discover_ship_title','field_5d2f2b854d072'),(1071,151,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/enchantment-of-the-seas'),(1072,151,'_discover_ship_link','field_5d2f2ba44d073'),(1073,151,'discover_ship_photo','668'),(1074,151,'_discover_ship_photo','field_5d2f2bbc4d075'),(1075,151,'gallery','a:5:{i:0;s:3:\"668\";i:1;s:3:\"667\";i:2;s:3:\"669\";i:3;s:3:\"666\";i:4;s:3:\"670\";}'),(1076,151,'_gallery','field_5d2f2c89081ed'),(1077,152,'select_brand','144'),(1078,152,'_select_brand','field_5d2cda81bbd5a'),(1079,152,'subtitle_ship','Serenade of the Seas'),(1080,152,'_subtitle_ship','field_5d2ce1bd8774a'),(1081,152,'description_ship','Serenade of the Seas® likes to explore different parts of the globe. You\'re invited to come along and experience the different journeys with us.'),(1082,152,'_description_ship','field_5d2ce1f38774b'),(1083,152,'imagem_ship','112'),(1084,152,'_imagem_ship','field_5d2ce2428774c'),(1085,152,'logo_brand_ship','750'),(1086,152,'_logo_brand_ship','field_5d2f245a16988'),(1087,152,'title_brand_ship','Serenade of the Seas'),(1088,152,'_title_brand_ship','field_5d2f247516989'),(1089,152,'description_brand_ship','From panoramic vistas at every corner to complete deck plans available your phone, there\'s no territory that will remain uncharted on this adventure.'),(1090,152,'_description_brand_ship','field_5d2f24851698a'),(1091,152,'photo_ship','194'),(1092,152,'_photo_ship','field_5d2f24901698b'),(1093,152,'technology_0_title_technology','Mobile App'),(1094,152,'_technology_0_title_technology','field_5d2f2748dcd06'),(1095,152,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1096,152,'_technology_0_description_technology','field_5d2f2754dcd07'),(1097,152,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1098,152,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1099,152,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1100,152,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1101,152,'technology','6'),(1102,152,'_technology','field_5d2f2738dcd05'),(1103,152,'discover_ship_title','Discover Royal Caribbean Cruising'),(1104,152,'_discover_ship_title','field_5d2f2b854d072'),(1105,152,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/serenade-of-the-seas'),(1106,152,'_discover_ship_link','field_5d2f2ba44d073'),(1107,152,'discover_ship_photo','523'),(1108,152,'_discover_ship_photo','field_5d2f2bbc4d075'),(1109,152,'gallery',''),(1110,152,'_gallery','field_5d2f2c89081ed'),(1111,154,'_edit_last','1'),(1112,154,'_edit_lock','1591636040:9'),(1113,155,'_edit_last','2'),(1114,155,'_edit_lock','1568925716:2'),(1115,156,'_edit_last','2'),(1116,156,'_edit_lock','1568925688:2'),(1117,157,'_edit_last','2'),(1118,157,'_edit_lock','1568925643:2'),(1119,158,'_edit_last','1'),(1120,158,'_edit_lock','1568033920:1'),(1121,159,'_edit_last','2'),(1122,159,'_edit_lock','1568925632:2'),(1123,160,'_edit_last','2'),(1124,160,'_edit_lock','1568925626:2'),(1125,161,'_edit_last','2'),(1126,161,'_edit_lock','1568400762:2'),(1127,162,'_edit_last','1'),(1128,162,'_edit_lock','1594322406:9'),(1129,154,'select_brand','144'),(1130,154,'_select_brand','field_5d2cda81bbd5a'),(1131,154,'subtitle_ship','Independence of the Seas'),(1132,154,'_subtitle_ship','field_5d2ce1bd8774a'),(1133,154,'description_ship','Our Guests already enjoyed sailing on Independence of the Seas®. We made several additions that enhance their experience even more. '),(1134,154,'_description_ship','field_5d2ce1f38774b'),(1135,154,'imagem_ship','112'),(1136,154,'_imagem_ship','field_5d2ce2428774c'),(1137,154,'logo_brand_ship','750'),(1138,154,'_logo_brand_ship','field_5d2f245a16988'),(1139,154,'title_brand_ship','Independence of the Seas'),(1140,154,'_title_brand_ship','field_5d2f247516989'),(1141,154,'description_brand_ship','True to its name, our ship and mobile app offer everything you need to plan your next adventure.'),(1142,154,'_description_brand_ship','field_5d2f24851698a'),(1143,154,'photo_ship','191'),(1144,154,'_photo_ship','field_5d2f24901698b'),(1145,154,'technology_0_title_technology','Mobile App'),(1146,154,'_technology_0_title_technology','field_5d2f2748dcd06'),(1147,154,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1148,154,'_technology_0_description_technology','field_5d2f2754dcd07'),(1149,154,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1150,154,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1151,154,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1152,154,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1153,154,'technology','6'),(1154,154,'_technology','field_5d2f2738dcd05'),(1155,154,'discover_ship_title','Discover Royal Caribbean Cruising'),(1156,154,'_discover_ship_title','field_5d2f2b854d072'),(1157,154,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/independence-of-the-seas'),(1158,154,'_discover_ship_link','field_5d2f2ba44d073'),(1159,154,'discover_ship_photo','661'),(1160,154,'_discover_ship_photo','field_5d2f2bbc4d075'),(1161,154,'gallery','a:2:{i:0;s:3:\"663\";i:1;s:3:\"661\";}'),(1162,154,'_gallery','field_5d2f2c89081ed'),(1163,155,'select_brand','144'),(1164,155,'_select_brand','field_5d2cda81bbd5a'),(1165,155,'subtitle_ship','Adventure of the Seas'),(1166,155,'_subtitle_ship','field_5d2ce1bd8774a'),(1167,155,'description_ship','Adventure of the Seas® caters to those guests looking for - you guessed it - adventurous. We sometimes marvel at how many different options Guests have.'),(1168,155,'_description_ship','field_5d2ce1f38774b'),(1169,155,'imagem_ship','112'),(1170,155,'_imagem_ship','field_5d2ce2428774c'),(1171,155,'logo_brand_ship','750'),(1172,155,'_logo_brand_ship','field_5d2f245a16988'),(1173,155,'title_brand_ship','Adventure of the Seas'),(1174,155,'_title_brand_ship','field_5d2f247516989'),(1175,155,'description_brand_ship','Find every type of adventure you seek on our mobile app, from late-night rendezvous to perfect poolside thrills.'),(1176,155,'_description_brand_ship','field_5d2f24851698a'),(1177,155,'photo_ship','178'),(1178,155,'_photo_ship','field_5d2f24901698b'),(1179,155,'technology_0_title_technology','Mobile App'),(1180,155,'_technology_0_title_technology','field_5d2f2748dcd06'),(1181,155,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1182,155,'_technology_0_description_technology','field_5d2f2754dcd07'),(1183,155,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1184,155,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1185,155,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1186,155,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1187,155,'technology','6'),(1188,155,'_technology','field_5d2f2738dcd05'),(1189,155,'discover_ship_title','Discover Royal Caribbean Cruising'),(1190,155,'_discover_ship_title','field_5d2f2b854d072'),(1191,155,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/adventure-of-the-seas'),(1192,155,'_discover_ship_link','field_5d2f2ba44d073'),(1193,155,'discover_ship_photo','468'),(1194,155,'_discover_ship_photo','field_5d2f2bbc4d075'),(1195,155,'gallery',''),(1196,155,'_gallery','field_5d2f2c89081ed'),(1197,156,'select_brand','144'),(1198,156,'_select_brand','field_5d2cda81bbd5a'),(1199,156,'subtitle_ship','Brilliance of the Seas'),(1200,156,'_subtitle_ship','field_5d2ce1bd8774a'),(1201,156,'description_ship','Discover new experiences on every shore — and on every deck.'),(1202,156,'_description_ship','field_5d2ce1f38774b'),(1203,156,'imagem_ship','112'),(1204,156,'_imagem_ship','field_5d2ce2428774c'),(1205,156,'logo_brand_ship','750'),(1206,156,'_logo_brand_ship','field_5d2f245a16988'),(1207,156,'title_brand_ship','Brilliance of the Seas'),(1208,156,'_title_brand_ship','field_5d2f247516989'),(1209,156,'description_brand_ship','No venture is too far. Discover all the possibilities, on every shore and every deck.'),(1210,156,'_description_brand_ship','field_5d2f24851698a'),(1211,156,'photo_ship','174'),(1212,156,'_photo_ship','field_5d2f24901698b'),(1213,156,'technology_0_title_technology','Mobile App'),(1214,156,'_technology_0_title_technology','field_5d2f2748dcd06'),(1215,156,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1216,156,'_technology_0_description_technology','field_5d2f2754dcd07'),(1217,156,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1218,156,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1219,156,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1220,156,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1221,156,'technology','3'),(1222,156,'_technology','field_5d2f2738dcd05'),(1223,156,'discover_ship_title','Discover Royal Caribbean Cruising'),(1224,156,'_discover_ship_title','field_5d2f2b854d072'),(1225,156,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/brilliance-of-the-seas'),(1226,156,'_discover_ship_link','field_5d2f2ba44d073'),(1227,156,'discover_ship_photo','481'),(1228,156,'_discover_ship_photo','field_5d2f2bbc4d075'),(1229,156,'gallery',''),(1230,156,'_gallery','field_5d2f2c89081ed'),(1231,157,'select_brand','144'),(1232,157,'_select_brand','field_5d2cda81bbd5a'),(1233,157,'subtitle_ship','Majesty of the Seas'),(1234,157,'_subtitle_ship','field_5d2ce1bd8774a'),(1235,157,'description_ship','Pack your bags for adventure and escape from Fort Lauderdale It’s time to disconnect from the grind and reconnect with adventure — on a quick escape to the Caribbean and The Bahamas on Majesty of the Seas®. Swim with giants on a whale shark dive in Cozumel.'),(1236,157,'_description_ship','field_5d2ce1f38774b'),(1237,157,'imagem_ship','112'),(1238,157,'_imagem_ship','field_5d2ce2428774c'),(1239,157,'logo_brand_ship','750'),(1240,157,'_logo_brand_ship','field_5d2f245a16988'),(1241,157,'title_brand_ship','Majesty of the Seas'),(1242,157,'_title_brand_ship','field_5d2f247516989'),(1243,157,'description_brand_ship','Everything you need to max out your weekend escape.  '),(1244,157,'_description_brand_ship','field_5d2f24851698a'),(1245,157,'photo_ship','189'),(1246,157,'_photo_ship','field_5d2f24901698b'),(1247,157,'technology_0_title_technology','Mobile App'),(1248,157,'_technology_0_title_technology','field_5d2f2748dcd06'),(1249,157,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1250,157,'_technology_0_description_technology','field_5d2f2754dcd07'),(1251,157,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1252,157,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1253,157,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-Discover Royal Caribbean Cruising'),(1254,157,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1255,157,'technology','3'),(1256,157,'_technology','field_5d2f2738dcd05'),(1257,157,'discover_ship_title','Discover Royal Caribbean Cruising'),(1258,157,'_discover_ship_title','field_5d2f2b854d072'),(1259,157,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/majesty-of-the-seas'),(1260,157,'_discover_ship_link','field_5d2f2ba44d073'),(1261,157,'discover_ship_photo','512'),(1262,157,'_discover_ship_photo','field_5d2f2bbc4d075'),(1263,157,'gallery',''),(1264,157,'_gallery','field_5d2f2c89081ed'),(1265,158,'select_brand','144'),(1266,158,'_select_brand','field_5d2cda81bbd5a'),(1267,158,'subtitle_ship','Harmony of the Seas'),(1268,158,'_subtitle_ship','field_5d2ce1bd8774a'),(1269,158,'description_ship','What do you get when you combine one of the biggest ships in the world with some of the boldest thrills at sea? One of the world’s largest cruise ships filled with family-friendly adventures to match.'),(1270,158,'_description_ship','field_5d2ce1f38774b'),(1271,158,'imagem_ship','112'),(1272,158,'_imagem_ship','field_5d2ce2428774c'),(1273,158,'logo_brand_ship','750'),(1274,158,'_logo_brand_ship','field_5d2f245a16988'),(1275,158,'title_brand_ship','Harmony of the Seas'),(1276,158,'_title_brand_ship','field_5d2f247516989'),(1277,158,'description_brand_ship','All of the adventure on one of the world\'s largest cruise ships fits right in the palm of your hand.'),(1278,158,'_description_brand_ship','field_5d2f24851698a'),(1279,158,'photo_ship','186'),(1280,158,'_photo_ship','field_5d2f24901698b'),(1281,158,'technology_0_title_technology','Mobile App'),(1282,158,'_technology_0_title_technology','field_5d2f2748dcd06'),(1283,158,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1284,158,'_technology_0_description_technology','field_5d2f2754dcd07'),(1285,158,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1286,158,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1287,158,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1288,158,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1289,158,'technology','7'),(1290,158,'_technology','field_5d2f2738dcd05'),(1291,158,'discover_ship_title','Discover Royal Caribbean Cruising'),(1292,158,'_discover_ship_title','field_5d2f2b854d072'),(1293,158,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/harmony-of-the-seas'),(1294,158,'_discover_ship_link','field_5d2f2ba44d073'),(1295,158,'discover_ship_photo','494'),(1296,158,'_discover_ship_photo','field_5d2f2bbc4d075'),(1297,158,'gallery','a:2:{i:0;s:3:\"136\";i:1;s:3:\"137\";}'),(1298,158,'_gallery','field_5d2f2c89081ed'),(1299,159,'select_brand','144'),(1300,159,'_select_brand','field_5d2cda81bbd5a'),(1301,159,'subtitle_ship','Liberty of the Seas'),(1302,159,'_subtitle_ship','field_5d2ce1bd8774a'),(1303,159,'description_ship','The adventure’s never been bigger — or bolder.'),(1304,159,'_description_ship','field_5d2ce1f38774b'),(1305,159,'imagem_ship','112'),(1306,159,'_imagem_ship','field_5d2ce2428774c'),(1307,159,'logo_brand_ship','750'),(1308,159,'_logo_brand_ship','field_5d2f245a16988'),(1309,159,'title_brand_ship','Liberty of the Seas'),(1310,159,'_title_brand_ship','field_5d2f247516989'),(1311,159,'description_brand_ship','Liberty is living life, and planning your perfect vacation, the way you want. It\'s all up to you.'),(1312,159,'_description_brand_ship','field_5d2f24851698a'),(1313,159,'photo_ship','188'),(1314,159,'_photo_ship','field_5d2f24901698b'),(1315,159,'technology_0_title_technology','Mobile App'),(1316,159,'_technology_0_title_technology','field_5d2f2748dcd06'),(1317,159,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1318,159,'_technology_0_description_technology','field_5d2f2754dcd07'),(1319,159,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1320,159,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1321,159,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1322,159,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1323,159,'technology','3'),(1324,159,'_technology','field_5d2f2738dcd05'),(1325,159,'discover_ship_title','Discover Royal Caribbean Cruising'),(1326,159,'_discover_ship_title','field_5d2f2b854d072'),(1327,159,'discover_ship_link','http://localhost/royal-caribbean-digital'),(1328,159,'_discover_ship_link','field_5d2f2ba44d073'),(1329,159,'discover_ship_photo','506'),(1330,159,'_discover_ship_photo','field_5d2f2bbc4d075'),(1331,159,'gallery',''),(1332,159,'_gallery','field_5d2f2c89081ed'),(1333,160,'select_brand','144'),(1334,160,'_select_brand','field_5d2cda81bbd5a'),(1335,160,'subtitle_ship','Vision of the Seas'),(1336,160,'_subtitle_ship','field_5d2ce1bd8774a'),(1337,160,'description_ship','Collect cultures across the globe as you gain a whole new perspective on adventure onboard Vision of the Seas®. '),(1338,160,'_description_ship','field_5d2ce1f38774b'),(1339,160,'imagem_ship','112'),(1340,160,'_imagem_ship','field_5d2ce2428774c'),(1341,160,'logo_brand_ship','750'),(1342,160,'_logo_brand_ship','field_5d2f245a16988'),(1343,160,'title_brand_ship','Vision of the Seas'),(1344,160,'_title_brand_ship','field_5d2f247516989'),(1345,160,'description_brand_ship','We accommodate your vision. Get a bird\'s eye view, or find out what\'s happening on your favorite corner of the ship.'),(1346,160,'_description_brand_ship','field_5d2f24851698a'),(1347,160,'photo_ship','181'),(1348,160,'_photo_ship','field_5d2f24901698b'),(1349,160,'technology_0_title_technology','Mobile App'),(1350,160,'_technology_0_title_technology','field_5d2f2748dcd06'),(1351,160,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1352,160,'_technology_0_description_technology','field_5d2f2754dcd07'),(1353,160,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1354,160,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1355,160,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1356,160,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1357,160,'technology','6'),(1358,160,'_technology','field_5d2f2738dcd05'),(1359,160,'discover_ship_title','Discover Royal Caribbean Cruising'),(1360,160,'_discover_ship_title','field_5d2f2b854d072'),(1361,160,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/vision-of-the-seas'),(1362,160,'_discover_ship_link','field_5d2f2ba44d073'),(1363,160,'discover_ship_photo','531'),(1364,160,'_discover_ship_photo','field_5d2f2bbc4d075'),(1365,160,'gallery',''),(1366,160,'_gallery','field_5d2f2c89081ed'),(1367,161,'select_brand','144'),(1368,161,'_select_brand','field_5d2cda81bbd5a'),(1369,161,'subtitle_ship','Navigator of the Seas'),(1370,161,'_subtitle_ship','field_5d2ce1bd8774a'),(1371,161,'description_ship','Don’t just get away. Get more from your cruise on the newly amped Navigator of the Seas®.'),(1372,161,'_description_ship','field_5d2ce1f38774b'),(1373,161,'imagem_ship','112'),(1374,161,'_imagem_ship','field_5d2ce2428774c'),(1375,161,'logo_brand_ship','750'),(1376,161,'_logo_brand_ship','field_5d2f245a16988'),(1377,161,'title_brand_ship','Navigator of the Seas'),(1378,161,'_title_brand_ship','field_5d2f247516989'),(1379,161,'description_brand_ship','Navigate the longest waterslide at sea by day and the rest of the ship by night with the help of our detailed, in-app deck plans.'),(1380,161,'_description_brand_ship','field_5d2f24851698a'),(1381,161,'photo_ship','179'),(1382,161,'_photo_ship','field_5d2f24901698b'),(1383,161,'technology_0_title_technology','Mobile App'),(1384,161,'_technology_0_title_technology','field_5d2f2748dcd06'),(1385,161,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1386,161,'_technology_0_description_technology','field_5d2f2754dcd07'),(1387,161,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1388,161,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1389,161,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1390,161,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1391,161,'technology','6'),(1392,161,'_technology','field_5d2f2738dcd05'),(1393,161,'discover_ship_title','Discover Royal Caribbean Cruising'),(1394,161,'_discover_ship_title','field_5d2f2b854d072'),(1395,161,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/navigator-of-the-seas'),(1396,161,'_discover_ship_link','field_5d2f2ba44d073'),(1397,161,'discover_ship_photo','985'),(1398,161,'_discover_ship_photo','field_5d2f2bbc4d075'),(1399,161,'gallery','a:2:{i:0;s:3:\"137\";i:1;s:3:\"136\";}'),(1400,161,'_gallery','field_5d2f2c89081ed'),(1401,162,'select_brand','144'),(1402,162,'_select_brand','field_5d2cda81bbd5a'),(1403,162,'subtitle_ship','Spectrum of the Seas'),(1404,162,'_subtitle_ship','field_5d2ce1bd8774a'),(1405,162,'description_ship','The next in the award-winning Quantum Class lineup, Spectrum of the Seas℠ is a Far East adventure full of feats and firsts designed with our Chinese guests in mind.'),(1406,162,'_description_ship','field_5d2ce1f38774b'),(1407,162,'imagem_ship','112'),(1408,162,'_imagem_ship','field_5d2ce2428774c'),(1409,162,'logo_brand_ship','750'),(1410,162,'_logo_brand_ship','field_5d2f245a16988'),(1411,162,'title_brand_ship','Spectrum of the Seas'),(1412,162,'_title_brand_ship','field_5d2f247516989'),(1413,162,'description_brand_ship','Take your Far East adventure even further with an otherworldly quest, courtesy of our interactive, in-app experiences.'),(1414,162,'_description_brand_ship','field_5d2f24851698a'),(1415,162,'photo_ship','808'),(1416,162,'_photo_ship','field_5d2f24901698b'),(1417,162,'technology_0_title_technology','Mobile App'),(1418,162,'_technology_0_title_technology','field_5d2f2748dcd06'),(1419,162,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(1420,162,'_technology_0_description_technology','field_5d2f2754dcd07'),(1421,162,'technology_0_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1422,162,'_technology_0_link_appstore','field_5d2f2772dcd08'),(1423,162,'technology_0_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(1424,162,'_technology_0_link_playstore','field_5d2f277fdcd09'),(1425,162,'technology','10'),(1426,162,'_technology','field_5d2f2738dcd05'),(1427,162,'discover_ship_title','Discover Spectrum of the Seas Cruising'),(1428,162,'_discover_ship_title','field_5d2f2b854d072'),(1429,162,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/spectrum-of-the-seas'),(1430,162,'_discover_ship_link','field_5d2f2ba44d073'),(1431,162,'discover_ship_photo','307'),(1432,162,'_discover_ship_photo','field_5d2f2bbc4d075'),(1433,162,'gallery','a:2:{i:0;s:3:\"609\";i:1;s:3:\"558\";}'),(1434,162,'_gallery','field_5d2f2c89081ed'),(1441,164,'_form','<div class=\"c-form__group\">\n	<label class=\"c-form__label\">Full Name</label>\n[text* fullname class:c-form__control placeholder\"James Franco\"]\n</div>\n<div class=\"c-form__group\">\n	<label class=\"c-form__label\">Email Address</label>\n[email* email class:c-form__control placeholder\"jfranco@company.com\"]\n</div>\n<div class=\"c-form__group\">\n	<label class=\"c-form__label\">Message</label>\n[textarea message class:c-form__control class:is-textarea placeholder\"Write something…\"]\n</div>\n<button id=\'submit\' class=\'wpcf7-form-control wpcf7-submit c-btn-icon is-light mt-1 mt-lg-0\'>Submit <i class=\"icon icon-go\"></i></button>'),(1442,164,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:33:\"Royal Caribbean Digital - Contact\";s:6:\"sender\";s:57:\"Royal Caribbean Digital <wordpress@royaldigital.labcp.co>\";s:9:\"recipient\";s:20:\"appfeedback@rccl.com\";s:4:\"body\";s:124:\"From: [fullname] <[email]>\n\nMessage Body:\n[message]\n\n-- \nThis e-mail was sent from a contact form on Royal Caribbean Digital\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1443,164,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:40:\"Royal Caribbean Digital \"[your-subject]\"\";s:6:\"sender\";s:57:\"Royal Caribbean Digital <wordpress@royaldigital.labcp.co>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:132:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Royal Caribbean Digital (http://royaldigital.labcp.co)\";s:18:\"additional_headers\";s:24:\"Reply-To: dev@cappen.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1444,164,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1445,164,'_additional_settings',''),(1446,164,'_locale','en_US'),(1453,171,'_wp_attached_file','2019/07/enchantement_s.png'),(1454,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2019/07/enchantement_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"enchantement_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"enchantement_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"enchantement_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1455,172,'_wp_attached_file','2019/07/enchantement_b.png'),(1456,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:26:\"2019/07/enchantement_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"enchantement_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"enchantement_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"enchantement_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"enchantement_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1457,173,'_wp_attached_file','2019/07/brilliance_s.png'),(1458,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:24:\"2019/07/brilliance_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"brilliance_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"brilliance_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"brilliance_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1459,174,'_wp_attached_file','2019/07/brilliance_b.png'),(1460,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:24:\"2019/07/brilliance_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"brilliance_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"brilliance_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"brilliance_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"brilliance_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1461,175,'_wp_attached_file','2019/07/oasis_b.png'),(1462,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:19:\"2019/07/oasis_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"oasis_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"oasis_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"oasis_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"oasis_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1463,176,'_wp_attached_file','2019/07/oasis_s.png'),(1464,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:19:\"2019/07/oasis_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"oasis_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"oasis_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"oasis_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1465,177,'_wp_attached_file','2019/07/adventure_s.png'),(1466,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:23:\"2019/07/adventure_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"adventure_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"adventure_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"adventure_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1467,178,'_wp_attached_file','2019/07/adventure_b.png'),(1468,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:23:\"2019/07/adventure_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"adventure_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"adventure_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"adventure_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"adventure_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1469,179,'_wp_attached_file','2019/07/navigation_b.png'),(1470,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:24:\"2019/07/navigation_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"navigation_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"navigation_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"navigation_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"navigation_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1471,180,'_wp_attached_file','2019/07/navigation_s.png'),(1472,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:24:\"2019/07/navigation_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"navigation_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"navigation_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"navigation_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1473,181,'_wp_attached_file','2019/07/vision_b.png'),(1474,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:20:\"2019/07/vision_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"vision_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"vision_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"vision_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"vision_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1475,182,'_wp_attached_file','2019/07/vision_s.png'),(1476,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:20:\"2019/07/vision_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"vision_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"vision_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"vision_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1479,184,'_wp_attached_file','2019/07/Spectrum_s.png'),(1480,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:22:\"2019/07/Spectrum_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Spectrum_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Spectrum_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Spectrum_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1481,185,'_wp_attached_file','2019/07/harmony_s.png'),(1482,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:21:\"2019/07/harmony_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"harmony_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"harmony_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"harmony_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1483,186,'_wp_attached_file','2019/07/harmony_b.png'),(1484,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:21:\"2019/07/harmony_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"harmony_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"harmony_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"harmony_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"harmony_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1485,187,'_wp_attached_file','2019/07/liberty_s.png'),(1486,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:21:\"2019/07/liberty_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"liberty_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"liberty_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"liberty_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1487,188,'_wp_attached_file','2019/07/liberty_b.png'),(1488,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:21:\"2019/07/liberty_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"liberty_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"liberty_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"liberty_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"liberty_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1489,189,'_wp_attached_file','2019/07/majesty_b.png'),(1490,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:21:\"2019/07/majesty_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"majesty_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"majesty_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"majesty_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"majesty_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1491,190,'_wp_attached_file','2019/07/majesty_s.png'),(1492,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:21:\"2019/07/majesty_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"majesty_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"majesty_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"majesty_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1493,191,'_wp_attached_file','2019/07/Independence_b.png'),(1494,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:26:\"2019/07/Independence_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Independence_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Independence_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Independence_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Independence_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1495,192,'_wp_attached_file','2019/07/Independence_s.png'),(1496,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:26:\"2019/07/Independence_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Independence_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Independence_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Independence_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1497,193,'_wp_attached_file','2019/07/Serenade_s.png'),(1498,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:22:\"2019/07/Serenade_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Serenade_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Serenade_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Serenade_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1499,194,'_wp_attached_file','2019/07/Serenade_b.png'),(1500,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:22:\"2019/07/Serenade_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Serenade_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Serenade_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Serenade_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Serenade_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1501,195,'_wp_attached_file','2019/07/Symphony_b.png'),(1502,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:22:\"2019/07/Symphony_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Symphony_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Symphony_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Symphony_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Symphony_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1503,196,'_wp_attached_file','2019/07/Symphony_s.png'),(1504,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:22:\"2019/07/Symphony_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Symphony_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Symphony_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Symphony_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1505,197,'_wp_attached_file','2019/07/allure_b.png'),(1506,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:20:\"2019/07/allure_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"allure_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"allure_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"allure_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"allure_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1507,198,'_wp_attached_file','2019/07/allure_s.png'),(1508,198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:20:\"2019/07/allure_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"allure_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"allure_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"allure_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1509,199,'_wp_attached_file','2019/07/mariner_s.png'),(1510,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:21:\"2019/07/mariner_s.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"mariner_s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mariner_s-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"mariner_s-241x655.png\";s:5:\"width\";i:241;s:6:\"height\";i:655;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:{}}}'),(1511,200,'_wp_attached_file','2019/07/mariner_b.png'),(1512,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:1688;s:4:\"file\";s:21:\"2019/07/mariner_b.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"mariner_b-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mariner_b-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"mariner_b-292x1024.png\";s:5:\"width\";i:292;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"mariner_b-482x655.png\";s:5:\"width\";i:482;s:6:\"height\";i:655;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:{}}}'),(1513,201,'title_hero','Solving for the digital future of cruising'),(1514,201,'_title_hero','field_5d2cbfcfc7b2b'),(1515,201,'title_quote','Tech that'),(1516,201,'_title_quote','field_5d2cc09b51dfa'),(1517,201,'title_strong_quote','ships'),(1518,201,'_title_strong_quote','field_5d2cc0db51dfc'),(1519,201,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(1520,201,'_description_quote','field_5d2cc0a851dfb'),(1521,201,'imagem_quote','45'),(1522,201,'_imagem_quote','field_5d2cc0ed51dfd'),(1523,201,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(1524,201,'_description_blockquote','field_5d2cc22c9da9a'),(1525,201,'author_blockquote','Richard Fain, in an interview with'),(1526,201,'_author_blockquote','field_5d2cc25a9da9b'),(1527,201,'company','TechRepublic'),(1528,201,'_company','field_5d2cc2769da9c'),(1529,201,'company_blockquote','TechRepublic'),(1530,201,'_company_blockquote','field_5d2cc2769da9c'),(1531,201,'title_featured_i','Tech EDGE'),(1532,201,'_title_featured_i','field_5d2cc41890f84'),(1533,201,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(1534,201,'_description_featured_i','field_5d2cc42890f85'),(1535,201,'seletc_type_link_featured_i','Link'),(1536,201,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(1537,201,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(1538,201,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(1539,201,'imagem_featured_i','61'),(1540,201,'_imagem_featured_i','field_5d2cc71559443'),(1541,201,'title_info_numbers','Digital by<br> the numbers'),(1542,201,'_title_info_numbers','field_5d2cc7e517635'),(1543,201,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(1544,201,'_description_info_number','field_5d2cc7f817636'),(1545,201,'app_downloads','2M'),(1546,201,'_app_downloads','field_5d2cc83e17637'),(1547,201,'active_users','900K'),(1548,201,'_active_users','field_5d2cc84617638'),(1549,201,'average_ios_rating','4.6'),(1550,201,'_average_ios_rating','field_5d2cc85217639'),(1551,201,'crew_checkins','14k'),(1552,201,'_crew_checkins','field_5d2cc8631763a'),(1553,201,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(1554,201,'_title_featured_ii','field_5d2cc9741153c'),(1555,201,'description_featured_ii',''),(1556,201,'_description_featured_ii','field_5d2cc97e1153d'),(1557,201,'imagem_featured_ii','77'),(1558,201,'_imagem_featured_ii','field_5d2cc98c1153e'),(1559,201,'seletc_type_link_featured_ii','Link'),(1560,201,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(1561,201,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(1562,201,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(1563,201,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(1564,201,'_title_featured_iii','field_5d2ccafff022a'),(1565,201,'description_featured_iii',''),(1566,201,'_description_featured_iii','field_5d2ccb0cf022b'),(1567,201,'imagem_featured_iii','85'),(1568,201,'_imagem_featured_iii','field_5d2ccb21f022c'),(1569,201,'seletc_type_link_featured_iii','Vídeo'),(1570,201,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(1571,201,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(1572,201,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(1573,203,'_edit_lock','1591636070:9'),(1574,205,'_menu_item_type','post_type'),(1575,205,'_menu_item_menu_item_parent','0'),(1576,205,'_menu_item_object_id','203'),(1577,205,'_menu_item_object','page'),(1578,205,'_menu_item_target',''),(1579,205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1580,205,'_menu_item_xfn',''),(1581,205,'_menu_item_url',''),(1583,206,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(1584,206,'_title_hero','field_5d2cbfcfc7b2b'),(1585,206,'title_quote','Tech that'),(1586,206,'_title_quote','field_5d2cc09b51dfa'),(1587,206,'title_strong_quote','ships'),(1588,206,'_title_strong_quote','field_5d2cc0db51dfc'),(1589,206,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(1590,206,'_description_quote','field_5d2cc0a851dfb'),(1591,206,'imagem_quote','45'),(1592,206,'_imagem_quote','field_5d2cc0ed51dfd'),(1593,206,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(1594,206,'_description_blockquote','field_5d2cc22c9da9a'),(1595,206,'author_blockquote','Richard Fain, in an interview with'),(1596,206,'_author_blockquote','field_5d2cc25a9da9b'),(1597,206,'company','TechRepublic'),(1598,206,'_company','field_5d2cc2769da9c'),(1599,206,'company_blockquote','TechRepublic'),(1600,206,'_company_blockquote','field_5d2cc2769da9c'),(1601,206,'title_featured_i','Tech EDGE'),(1602,206,'_title_featured_i','field_5d2cc41890f84'),(1603,206,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(1604,206,'_description_featured_i','field_5d2cc42890f85'),(1605,206,'seletc_type_link_featured_i','Link'),(1606,206,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(1607,206,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(1608,206,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(1609,206,'imagem_featured_i','61'),(1610,206,'_imagem_featured_i','field_5d2cc71559443'),(1611,206,'title_info_numbers','Digital by<br> the numbers'),(1612,206,'_title_info_numbers','field_5d2cc7e517635'),(1613,206,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(1614,206,'_description_info_number','field_5d2cc7f817636'),(1615,206,'app_downloads','2M'),(1616,206,'_app_downloads','field_5d2cc83e17637'),(1617,206,'active_users','900K'),(1618,206,'_active_users','field_5d2cc84617638'),(1619,206,'average_ios_rating','4.6'),(1620,206,'_average_ios_rating','field_5d2cc85217639'),(1621,206,'crew_checkins','14k'),(1622,206,'_crew_checkins','field_5d2cc8631763a'),(1623,206,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(1624,206,'_title_featured_ii','field_5d2cc9741153c'),(1625,206,'description_featured_ii',''),(1626,206,'_description_featured_ii','field_5d2cc97e1153d'),(1627,206,'imagem_featured_ii','77'),(1628,206,'_imagem_featured_ii','field_5d2cc98c1153e'),(1629,206,'seletc_type_link_featured_ii','Link'),(1630,206,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(1631,206,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(1632,206,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(1633,206,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(1634,206,'_title_featured_iii','field_5d2ccafff022a'),(1635,206,'description_featured_iii',''),(1636,206,'_description_featured_iii','field_5d2ccb0cf022b'),(1637,206,'imagem_featured_iii','85'),(1638,206,'_imagem_featured_iii','field_5d2ccb21f022c'),(1639,206,'seletc_type_link_featured_iii','Vídeo'),(1640,206,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(1641,206,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(1642,206,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(1644,212,'_edit_lock','1571060649:1'),(1648,212,'_edit_last','2'),(1651,212,'author_news','2'),(1652,212,'_author_news','field_5d3083fbbea51'),(1653,212,'select_brand','88'),(1654,212,'_select_brand','field_5d3084d736561'),(1655,212,'featured_post','1'),(1656,212,'_featured_post','field_5d30852c7c4e7'),(1657,212,'legend_featured_image',''),(1658,212,'_legend_featured_image','field_5d39e9d4ef8f8'),(1659,212,'select_posts_related',''),(1660,212,'_select_posts_related','field_5d3afdcff5db7'),(1661,214,'author_news',''),(1662,214,'_author_news','field_5d3083fbbea51'),(1663,214,'select_brand',''),(1664,214,'_select_brand','field_5d3084d736561'),(1665,214,'featured_post','1'),(1666,214,'_featured_post','field_5d30852c7c4e7'),(1667,214,'legend_featured_image','Neque porro quisquam est'),(1668,214,'_legend_featured_image','field_5d39e9d4ef8f8'),(1669,214,'select_posts_related',''),(1670,214,'_select_posts_related','field_5d3afdcff5db7'),(1675,216,'author_news',''),(1676,216,'_author_news','field_5d3083fbbea51'),(1677,216,'select_brand',''),(1678,216,'_select_brand','field_5d3084d736561'),(1679,216,'featured_post','1'),(1680,216,'_featured_post','field_5d30852c7c4e7'),(1681,216,'legend_featured_image','Neque porro quisquam est'),(1682,216,'_legend_featured_image','field_5d39e9d4ef8f8'),(1683,216,'select_posts_related',''),(1684,216,'_select_posts_related','field_5d3afdcff5db7'),(1689,217,'author_news',''),(1690,217,'_author_news','field_5d3083fbbea51'),(1691,217,'select_brand',''),(1692,217,'_select_brand','field_5d3084d736561'),(1693,217,'featured_post','1'),(1694,217,'_featured_post','field_5d30852c7c4e7'),(1695,217,'legend_featured_image','Neque porro quisquam est'),(1696,217,'_legend_featured_image','field_5d39e9d4ef8f8'),(1697,217,'select_posts_related',''),(1698,217,'_select_posts_related','field_5d3afdcff5db7'),(1707,219,'author_news','2'),(1708,219,'_author_news','field_5d3083fbbea51'),(1709,219,'select_brand',''),(1710,219,'_select_brand','field_5d3084d736561'),(1711,219,'featured_post','1'),(1712,219,'_featured_post','field_5d30852c7c4e7'),(1713,219,'legend_featured_image','Neque porro quisquam est'),(1714,219,'_legend_featured_image','field_5d39e9d4ef8f8'),(1715,219,'select_posts_related',''),(1716,219,'_select_posts_related','field_5d3afdcff5db7'),(1721,220,'author_news','2'),(1722,220,'_author_news','field_5d3083fbbea51'),(1723,220,'select_brand','88'),(1724,220,'_select_brand','field_5d3084d736561'),(1725,220,'featured_post','1'),(1726,220,'_featured_post','field_5d30852c7c4e7'),(1727,220,'legend_featured_image','Neque porro quisquam est'),(1728,220,'_legend_featured_image','field_5d39e9d4ef8f8'),(1729,220,'select_posts_related',''),(1730,220,'_select_posts_related','field_5d3afdcff5db7'),(1735,222,'author_news','2'),(1736,222,'_author_news','field_5d3083fbbea51'),(1737,222,'select_brand','88'),(1738,222,'_select_brand','field_5d3084d736561'),(1739,222,'featured_post','1'),(1740,222,'_featured_post','field_5d30852c7c4e7'),(1741,222,'legend_featured_image','Neque porro quisquam est'),(1742,222,'_legend_featured_image','field_5d39e9d4ef8f8'),(1743,222,'select_posts_related',''),(1744,222,'_select_posts_related','field_5d3afdcff5db7'),(1898,207,'_edit_lock','1568383882:1'),(1899,207,'_edit_last','1'),(1900,233,'_edit_lock','1568383947:1'),(1901,233,'_edit_last','1'),(1902,235,'_edit_lock','1568383925:1'),(1903,235,'_edit_last','1'),(1908,212,'archive_audio_mp3',''),(1909,212,'_archive_audio_mp3','field_5d4989a80007c'),(1926,222,'archive_audio_mp3',''),(1927,222,'_archive_audio_mp3','field_5d4989a80007c'),(1932,212,'url_video',''),(1933,212,'_url_video','field_5d49897521f43'),(1934,222,'url_video',''),(1935,222,'_url_video','field_5d49897521f43'),(2117,248,'author_news','2'),(2118,248,'_author_news','field_5d3083fbbea51'),(2119,248,'select_brand','88'),(2120,248,'_select_brand','field_5d3084d736561'),(2121,248,'featured_post','1'),(2122,248,'_featured_post','field_5d30852c7c4e7'),(2123,248,'legend_featured_image','Neque porro quisquam est'),(2124,248,'_legend_featured_image','field_5d39e9d4ef8f8'),(2125,248,'select_posts_related',''),(2126,248,'_select_posts_related','field_5d3afdcff5db7'),(2127,248,'archive_audio_mp3',''),(2128,248,'_archive_audio_mp3','field_5d4989a80007c'),(2129,248,'url_video',''),(2130,248,'_url_video','field_5d49897521f43'),(2135,250,'author_news','2'),(2136,250,'_author_news','field_5d3083fbbea51'),(2137,250,'select_brand','88'),(2138,250,'_select_brand','field_5d3084d736561'),(2139,250,'featured_post','1'),(2140,250,'_featured_post','field_5d30852c7c4e7'),(2141,250,'legend_featured_image','Neque porro quisquam est'),(2142,250,'_legend_featured_image','field_5d39e9d4ef8f8'),(2143,250,'select_posts_related',''),(2144,250,'_select_posts_related','field_5d3afdcff5db7'),(2145,250,'archive_audio_mp3',''),(2146,250,'_archive_audio_mp3','field_5d4989a80007c'),(2147,250,'url_video',''),(2148,250,'_url_video','field_5d49897521f43'),(2153,252,'author_news','2'),(2154,252,'_author_news','field_5d3083fbbea51'),(2155,252,'select_brand','88'),(2156,252,'_select_brand','field_5d3084d736561'),(2157,252,'featured_post','1'),(2158,252,'_featured_post','field_5d30852c7c4e7'),(2159,252,'legend_featured_image','Neque porro quisquam est'),(2160,252,'_legend_featured_image','field_5d39e9d4ef8f8'),(2161,252,'select_posts_related',''),(2162,252,'_select_posts_related','field_5d3afdcff5db7'),(2163,252,'archive_audio_mp3',''),(2164,252,'_archive_audio_mp3','field_5d4989a80007c'),(2165,252,'url_video',''),(2166,252,'_url_video','field_5d49897521f43'),(2171,254,'author_news','2'),(2172,254,'_author_news','field_5d3083fbbea51'),(2173,254,'select_brand','88'),(2174,254,'_select_brand','field_5d3084d736561'),(2175,254,'featured_post','1'),(2176,254,'_featured_post','field_5d30852c7c4e7'),(2177,254,'legend_featured_image','Neque porro quisquam est'),(2178,254,'_legend_featured_image','field_5d39e9d4ef8f8'),(2179,254,'select_posts_related',''),(2180,254,'_select_posts_related','field_5d3afdcff5db7'),(2181,254,'archive_audio_mp3',''),(2182,254,'_archive_audio_mp3','field_5d4989a80007c'),(2183,254,'url_video',''),(2184,254,'_url_video','field_5d49897521f43'),(2207,256,'author_news','2'),(2208,256,'_author_news','field_5d3083fbbea51'),(2209,256,'select_brand','88'),(2210,256,'_select_brand','field_5d3084d736561'),(2211,256,'featured_post','1'),(2212,256,'_featured_post','field_5d30852c7c4e7'),(2213,256,'legend_featured_image','Neque porro quisquam est'),(2214,256,'_legend_featured_image','field_5d39e9d4ef8f8'),(2215,256,'select_posts_related',''),(2216,256,'_select_posts_related','field_5d3afdcff5db7'),(2217,256,'archive_audio_mp3',''),(2218,256,'_archive_audio_mp3','field_5d4989a80007c'),(2219,256,'url_video',''),(2220,256,'_url_video','field_5d49897521f43'),(2225,258,'author_news','2'),(2226,258,'_author_news','field_5d3083fbbea51'),(2227,258,'select_brand','88'),(2228,258,'_select_brand','field_5d3084d736561'),(2229,258,'featured_post','1'),(2230,258,'_featured_post','field_5d30852c7c4e7'),(2231,258,'legend_featured_image','Neque porro quisquam est'),(2232,258,'_legend_featured_image','field_5d39e9d4ef8f8'),(2233,258,'select_posts_related',''),(2234,258,'_select_posts_related','field_5d3afdcff5db7'),(2235,258,'archive_audio_mp3',''),(2236,258,'_archive_audio_mp3','field_5d4989a80007c'),(2237,258,'url_video',''),(2238,258,'_url_video','field_5d49897521f43'),(2243,259,'author_news','2'),(2244,259,'_author_news','field_5d3083fbbea51'),(2245,259,'select_brand','88'),(2246,259,'_select_brand','field_5d3084d736561'),(2247,259,'featured_post','1'),(2248,259,'_featured_post','field_5d30852c7c4e7'),(2249,259,'legend_featured_image','Neque porro quisquam est'),(2250,259,'_legend_featured_image','field_5d39e9d4ef8f8'),(2251,259,'select_posts_related',''),(2252,259,'_select_posts_related','field_5d3afdcff5db7'),(2253,259,'archive_audio_mp3',''),(2254,259,'_archive_audio_mp3','field_5d4989a80007c'),(2255,259,'url_video',''),(2256,259,'_url_video','field_5d49897521f43'),(2279,264,'author_news','2'),(2280,264,'_author_news','field_5d3083fbbea51'),(2281,264,'select_brand','88'),(2282,264,'_select_brand','field_5d3084d736561'),(2283,264,'featured_post','1'),(2284,264,'_featured_post','field_5d30852c7c4e7'),(2285,264,'legend_featured_image','Neque porro quisquam est'),(2286,264,'_legend_featured_image','field_5d39e9d4ef8f8'),(2287,264,'select_posts_related',''),(2288,264,'_select_posts_related','field_5d3afdcff5db7'),(2289,264,'archive_audio_mp3',''),(2290,264,'_archive_audio_mp3','field_5d4989a80007c'),(2291,264,'url_video',''),(2292,264,'_url_video','field_5d49897521f43'),(2315,269,'author_news','2'),(2316,269,'_author_news','field_5d3083fbbea51'),(2317,269,'select_brand','88'),(2318,269,'_select_brand','field_5d3084d736561'),(2319,269,'featured_post','1'),(2320,269,'_featured_post','field_5d30852c7c4e7'),(2321,269,'legend_featured_image','Neque porro quisquam est'),(2322,269,'_legend_featured_image','field_5d39e9d4ef8f8'),(2323,269,'select_posts_related',''),(2324,269,'_select_posts_related','field_5d3afdcff5db7'),(2325,269,'archive_audio_mp3',''),(2326,269,'_archive_audio_mp3','field_5d4989a80007c'),(2327,269,'url_video',''),(2328,269,'_url_video','field_5d49897521f43'),(2329,271,'_edit_lock','1593110157:13'),(2330,271,'_wp_page_template','page-faq.php'),(2332,274,'_edit_lock','1592233846:9'),(2333,274,'_edit_last','1'),(2334,278,'_edit_lock','1571072852:1'),(2335,278,'_edit_last','1'),(2399,304,'_wp_attached_file','2019/07/checkin.jpg'),(2400,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1700;s:4:\"file\";s:19:\"2019/07/checkin.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"checkin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"checkin-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"checkin-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"checkin-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"checkin-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:20:\"checkin-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:19:\"checkin-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:20:\"checkin-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:19:\"checkin-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:19:\"checkin-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:20:\"checkin-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2401,162,'technology_1_title_technology','Mobile Check-in'),(2402,162,'_technology_1_title_technology','field_5d2f2748dcd06'),(2403,162,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(2404,162,'_technology_1_description_technology','field_5d2f2754dcd07'),(2405,162,'technology_1_link_appstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(2406,162,'_technology_1_link_appstore','field_5d2f2772dcd08'),(2407,162,'technology_1_link_playstore','https://www.apple.com/br/?afid=p238%7CsrZYhNtjZ-dc_mtid_1870765e38482_pcrid_267796071010_pgrid_17049243298_&cid=aos-br-kwgo-brand--slid---applestore-e-product-'),(2408,162,'_technology_1_link_playstore','field_5d2f277fdcd09'),(2409,162,'technology_2_title_technology','Daily Planner'),(2410,162,'_technology_2_title_technology','field_5d2f2748dcd06'),(2411,162,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(2412,162,'_technology_2_description_technology','field_5d2f2754dcd07'),(2413,162,'technology_2_link_appstore',''),(2414,162,'_technology_2_link_appstore','field_5d2f2772dcd08'),(2415,162,'technology_2_link_playstore',''),(2416,162,'_technology_2_link_playstore','field_5d2f277fdcd09'),(2417,162,'technology_3_title_technology','Reservations'),(2418,162,'_technology_3_title_technology','field_5d2f2748dcd06'),(2419,162,'technology_3_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(2420,162,'_technology_3_description_technology','field_5d2f2754dcd07'),(2421,162,'technology_3_link_appstore',''),(2422,162,'_technology_3_link_appstore','field_5d2f2772dcd08'),(2423,162,'technology_3_link_playstore',''),(2424,162,'_technology_3_link_playstore','field_5d2f277fdcd09'),(2541,307,'_wp_attached_file','2019/08/Spectrum.jpg'),(2542,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2019/08/Spectrum.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Spectrum-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:150;s:1:\"y\";i:0;s:2:\"x2\";i:651;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Spectrum-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Spectrum-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Spectrum-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"Spectrum-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"Spectrum-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:21:\"Spectrum-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:24;s:1:\"y\";i:0;s:2:\"x2\";i:775;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:20:\"Spectrum-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:150;s:1:\"y\";i:0;s:2:\"x2\";i:651;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"Spectrum-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"Spectrum-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:20:\"Spectrum-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:150;s:1:\"y\";i:0;s:2:\"x2\";i:651;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:18:\"featured-faq-small\";a:5:{s:4:\"file\";s:20:\"Spectrum-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:80;s:1:\"y\";i:0;s:2:\"x2\";i:721;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:18:\"featured-faq-learn\";a:5:{s:4:\"file\";s:21:\"Spectrum-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:1;s:1:\"y\";i:0;s:2:\"x2\";i:800;s:2:\"y2\";i:499;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:20:\"Spectrum-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:24;s:1:\"y\";i:0;s:2:\"x2\";i:775;s:2:\"y2\";i:500;s:14:\"original_width\";i:800;s:15:\"original_height\";i:500;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2605,309,'author_news','2'),(2606,309,'_author_news','field_5d3083fbbea51'),(2607,309,'select_brand','88'),(2608,309,'_select_brand','field_5d3084d736561'),(2609,309,'featured_post','1'),(2610,309,'_featured_post','field_5d30852c7c4e7'),(2611,309,'legend_featured_image','Neque porro quisquam est'),(2612,309,'_legend_featured_image','field_5d39e9d4ef8f8'),(2613,309,'select_posts_related',''),(2614,309,'_select_posts_related','field_5d3afdcff5db7'),(2615,309,'archive_audio_mp3',''),(2616,309,'_archive_audio_mp3','field_5d4989a80007c'),(2617,309,'url_video',''),(2618,309,'_url_video','field_5d49897521f43'),(2619,312,'_edit_lock','1571060415:1'),(2622,312,'_thumbnail_id','361'),(2623,312,'_edit_last','1'),(2626,312,'author_news','2'),(2627,312,'_author_news','field_5d3083fbbea51'),(2628,312,'select_brand','144'),(2629,312,'_select_brand','field_5d3084d736561'),(2630,312,'featured_post','0'),(2631,312,'_featured_post','field_5d30852c7c4e7'),(2632,312,'legend_featured_image',''),(2633,312,'_legend_featured_image','field_5d39e9d4ef8f8'),(2634,312,'select_posts_related',''),(2635,312,'_select_posts_related','field_5d3afdcff5db7'),(2636,314,'author_news','2'),(2637,314,'_author_news','field_5d3083fbbea51'),(2638,314,'select_brand','144'),(2639,314,'_select_brand','field_5d3084d736561'),(2640,314,'featured_post','0'),(2641,314,'_featured_post','field_5d30852c7c4e7'),(2642,314,'legend_featured_image',''),(2643,314,'_legend_featured_image','field_5d39e9d4ef8f8'),(2644,314,'select_posts_related',''),(2645,314,'_select_posts_related','field_5d3afdcff5db7'),(2664,317,'_wp_attached_file','2019/08/Expedited-Arrival.jpg'),(2665,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:833;s:6:\"height\";i:932;s:4:\"file\";s:29:\"2019/08/Expedited-Arrival.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-268x300.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-768x859.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Expedited-Arrival-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"Expedited-Arrival-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"Expedited-Arrival-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"Expedited-Arrival-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"Expedited-Arrival-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2674,319,'author_news','2'),(2675,319,'_author_news','field_5d3083fbbea51'),(2676,319,'select_brand','144'),(2677,319,'_select_brand','field_5d3084d736561'),(2678,319,'featured_post','0'),(2679,319,'_featured_post','field_5d30852c7c4e7'),(2680,319,'legend_featured_image',''),(2681,319,'_legend_featured_image','field_5d39e9d4ef8f8'),(2682,319,'select_posts_related',''),(2683,319,'_select_posts_related','field_5d3afdcff5db7'),(2684,321,'_wp_attached_file','2019/08/FamilyExpedited.jpg'),(2685,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1930;s:6:\"height\";i:1068;s:4:\"file\";s:27:\"2019/08/FamilyExpedited.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-768x425.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"FamilyExpedited-1024x567.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"FamilyExpedited-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:28:\"FamilyExpedited-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:28:\"FamilyExpedited-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:27:\"FamilyExpedited-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:28:\"FamilyExpedited-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2700,323,'_wp_attached_file','2019/08/CelebrityStateroomControls.jpg'),(2701,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2074;s:6:\"height\";i:1060;s:4:\"file\";s:38:\"2019/08/CelebrityStateroomControls.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-768x393.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"CelebrityStateroomControls-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"CelebrityStateroomControls-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:39:\"CelebrityStateroomControls-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:39:\"CelebrityStateroomControls-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:38:\"CelebrityStateroomControls-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:39:\"CelebrityStateroomControls-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2720,325,'author_news','2'),(2721,325,'_author_news','field_5d3083fbbea51'),(2722,325,'select_brand','144'),(2723,325,'_select_brand','field_5d3084d736561'),(2724,325,'featured_post','0'),(2725,325,'_featured_post','field_5d30852c7c4e7'),(2726,325,'legend_featured_image',''),(2727,325,'_legend_featured_image','field_5d39e9d4ef8f8'),(2728,325,'select_posts_related',''),(2729,325,'_select_posts_related','field_5d3afdcff5db7'),(2851,332,'_edit_lock','1568916987:1'),(2852,332,'_edit_last','1'),(2853,332,'_thumbnail_id','607'),(2854,332,'url_video_featured',''),(2855,332,'_url_video_featured','field_5d4b2b239e718'),(2856,332,'content_faq_0_image_featured_row','424'),(2857,332,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(2858,332,'content_faq_0_text_row_content','<strong>What reservations can I make with the app?</strong>\r\n\r\n<em>You can make reservations for Shore Excursions, Specialty Dining, Flex Dining, Activities and Shows. Other reservations are currently not supported in the app.</em>\r\n\r\n&nbsp;\r\n\r\n<strong>Can I modify reservations with the app?</strong>\r\n\r\n<em>You can either remove a Guest from the reservation or cancel the entire reservation (within the cancellation policy) with the app. For further modification, such as changes in date, time or party, you can either cancel and rebook the reservation or visit Guest Services / Relations.</em>\r\n\r\n&nbsp;\r\n\r\n<strong>Can I make pre-cruise reservations with the app?</strong>\r\n\r\n<em>No. Currently, you must be onboard to make reservations through the app.</em>\r\n\r\n&nbsp;\r\n\r\n<strong>Can I make a reservation for their entire party?</strong>\r\n\r\n<em>Yes. You can make reservations for your entire party. To make reservations for more than one stateroom, you must first link accounts with the other stateroom.</em>\r\n\r\n&nbsp;'),(2859,332,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(2860,332,'content_faq','1'),(2861,332,'_content_faq','field_5d4c26b63bd77'),(2862,332,'select_posts_related',''),(2863,332,'_select_posts_related','field_5d4b2b239e75e'),(2864,332,'download_app_caribbean_digital','0'),(2865,332,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(2866,332,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(2867,332,'_need_more_help','field_5d4c2771f5de3'),(2868,332,'author_news','2'),(2869,332,'_author_news','field_5d4b2aa11701b'),(2870,333,'_wp_attached_file','2019/08/Reservations_1-1.jpg'),(2871,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4200;s:6:\"height\";i:4200;s:4:\"file\";s:28:\"2019/08/Reservations_1-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Reservations_1-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Reservations_1-1-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"Reservations_1-1-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"Reservations_1-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_1-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"Reservations_1-1-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2872,334,'_edit_lock','1568916741:1'),(2873,334,'_edit_last','1'),(2874,334,'url_video_featured',''),(2875,334,'_url_video_featured','field_5d4b2b239e718'),(2876,334,'content_faq_0_image_featured_row','407'),(2877,334,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(2878,334,'content_faq_0_text_row_content','<strong>Use the Royal Caribbean International app for free onboard</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Already have the app?</strong>\r\n\r\n1. In settings, connect to your ship’s guest Wi-Fi.\r\n\r\n(ex. “WiFi-Guest-Allure”)\r\n\r\n2. When pop-up appears, tap Use our app for free.\r\n\r\n3. Tap Use app for free again on the next screen.\r\n\r\n4. Launch the app, log in, and enjoy your cruise.\r\n\r\n&nbsp;\r\n\r\n<strong>Need to download it?</strong>\r\n\r\n1. In settings, connect to your ship’s guest Wi-Fi.\r\n\r\n(ex. “WiFi-Guest-Allure”)\r\n\r\n2. When pop-up appears, tap Download it now.\r\n\r\n3. Download the app from your App Store.\r\n\r\n4. Launch the app, log in, and enjoy your cruise.'),(2879,334,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(2888,334,'content_faq','1'),(2889,334,'_content_faq','field_5d4c26b63bd77'),(2890,334,'select_posts_related',''),(2891,334,'_select_posts_related','field_5d4b2b239e75e'),(2892,334,'download_app_caribbean_digital','1'),(2893,334,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(2894,334,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(2895,334,'_need_more_help','field_5d4c2771f5de3'),(2896,334,'author_news','2'),(2897,334,'_author_news','field_5d4b2aa11701b'),(2898,334,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(2899,334,'_link_app_ios','field_5d4c2862f5de5'),(2900,334,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(2901,334,'_link_app_android','field_5d4c287cf5de6'),(2903,334,'_thumbnail_id','45'),(2904,335,'_edit_lock','1568992426:2'),(2905,335,'_edit_last','2'),(2906,335,'_thumbnail_id','544'),(2907,335,'url_video_featured',''),(2908,335,'_url_video_featured','field_5d4b2b239e718'),(2909,335,'content_faq_0_image_featured_row','304'),(2910,335,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(2911,335,'content_faq_0_text_row_content','As the hours count down towards your next cruise, you will want to complete online check-in to expedite the process of getting onboard your ship once you arrive at the cruise terminal.\r\n\r\nOur goal is to enable guests to get from the car that drops you off at the terminal onboard the ship in a matter of minutes. Completing the check-in process from start to finish entirely at the terminal requires much more time.\r\n\r\nWhen you check-in online, you will not be required to fill out any forms at the terminal. However, you\'ll still need to complete and print your SetSail Pass anywhere from 90 days to 48 hours prior to your sail date.\r\n\r\n<b>What is online check-in, anyway? How does it work?</b>\r\n\r\nAs soon as you book you cruise, you’ll get an e-mail confirmation of your reservation. There are two different ways to check in: via the app, or via the web. Choose your preferred platform to begin the process.\r\n\r\n<b>What are the differences between checking in online with the app compared to a laptop?</b>\r\n\r\nUsing the app to check in takes roughly half the time of checking in on a laptop. But both are efficient and much preferable to potentially spending much longer completing the process in a terminal before boarding.\r\n\r\n<strong>What will I need to complete online check-in?</strong>\r\n\r\nGather the passports of everyone sailing in your party as well as a credit card you will need for your Guest Account.\r\n\r\n<b>Are there any fees associated with using Online Check-In or Expedited Arrival? </b>\r\n\r\nNo, there are no additional charges for using the app.\r\n\r\n<b>Can I save my online check-in profile and use it for future sailings?</b>\r\n\r\nWe take you security and confidential info very seriously. When applicable, we do save/store certain parts of your profile in order to help you check in for future sailings. Any data entered can be deleted at a guest\'s request.<span class=\"Apple-converted-space\"> </span>\r\n\r\n<b>Does the app need to be available on my ship in order for me to be able to check in online?</b>\r\n\r\nNo. Even for ships that don’t support the app, you can check in over the web across the entire fleet. App check-in is specific to ships that have it.<span class=\"Apple-converted-space\"> </span>\r\n\r\n<strong>How do I begin the check-in process?</strong>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Access Guest Dashboard in app - this shows your name, deck, stateroom, muster, reservation number, ship and dates of sail&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Access Guest Dashboard in app - this shows your name, deck, stateroom, muster, reservation number, ship and dates of sail.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Click \\&quot;Start check-in\\&quot; in blue CTA box&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Click \"Start check-in\" in blue box.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Several people may be linked under your reservation number, choose either one person (yourself) or multiple people to check-in&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Several people may be linked under your reservation number. Select everyone you would like to check in to continue.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Upload travel documentation (scan passport, etc.)&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Upload the listed travel documentation (scanned passport).</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Upload a valid security photo&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Upload a valid security photo.</span>\r\n\r\n<strong>What comes next?</strong>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Set up onboard expense account, denoting payment methods&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Set up an <a href=\"http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/\">onboard expense account</a>, denoting your preferred payment methods. Y</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;You will be redirected to the Guest Account page&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">ou will be redirected to the Guest Account page.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Click \\&quot;View SetSail Pass\\&quot; in blue CTA box&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Click \"View SetSail Pass\" in blue CTA box</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone)&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Your SetSail Pass will appear (take a screenshot to have it readily available on your phone).</span>\r\n\r\nYou\'re now checked in and ready to arrive at the terminal! Remember, you can complete this process anywhere from 90 days to 48 hours before your first day of sailing.'),(2912,335,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(2917,335,'content_faq','1'),(2918,335,'_content_faq','field_5d4c26b63bd77'),(2919,335,'select_posts_related',''),(2920,335,'_select_posts_related','field_5d4b2b239e75e'),(2921,335,'download_app_caribbean_digital','1'),(2922,335,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(2923,335,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(2924,335,'_need_more_help','field_5d4c2771f5de3'),(2925,335,'author_news','2'),(2926,335,'_author_news','field_5d4b2aa11701b'),(2927,335,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(2928,335,'_link_app_ios','field_5d4c2862f5de5'),(2929,335,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(2930,335,'_link_app_android','field_5d4c287cf5de6'),(2931,336,'_edit_lock','1594229045:9'),(2932,336,'_edit_last','2'),(2933,336,'_thumbnail_id','1006'),(2934,336,'url_video_featured',''),(2935,336,'_url_video_featured','field_5d4b2b239e718'),(2936,336,'content_faq_0_image_featured_row','939'),(2937,336,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(2938,336,'content_faq_0_text_row_content','<strong>What is Expedited Arrival? </strong>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone)\\nIf your travel information exactly matches with what is under your reservation in the system, an \\&quot;Expedited Arrival\\&quot; demarkation will appear in the upper right-hand corner which gives you a faster, seamless boarding experience when in terminal&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Expedited Arrival gives you a faster, seamless boarding experience when in the terminal.</span>\r\n\r\n<strong>How do I know if I am eligible for Expedited Arrival?</strong>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone)\\nIf your travel information exactly matches with what is under your reservation in the system, an \\&quot;Expedited Arrival\\&quot; demarkation will appear in the upper right-hand corner which gives you a faster, seamless boarding experience when in terminal&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\"><a href=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/\">Check the ship</a> of your upcoming cruise to see if it is offered. If it is, begin the Online Check-in process on the app. If Expedited Arrival is available on your ship and your travel information exactly matches what is under your reservation in the system, an \"Expedited Arrival\" demarkation will appear in the upper right-hand corner. </span>\r\n\r\nOnline Check-in is available anywhere 90 days to 48 hours in advance of sailing. To qualify for Expedited Arrival, you must check-in using the app.\r\n\r\nIf qualified, the SeaPass displayed on the app will indicate \"Expedited Arrival.\"\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Access Guest Dashboard in app - this shows your name, deck, stateroom, muster, reservation number, ship and dates of sail&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\"><strong>Ho</strong></span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Access Guest Dashboard in app - this shows your name, deck, stateroom, muster, reservation number, ship and dates of sail&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\"><strong>w do I start the Expedited Arrival process?</strong> </span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Access Guest Dashboard in app - this shows your name, deck, stateroom, muster, reservation number, ship and dates of sail&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">1. Launch the app, log in, and open to the Home Page. Swipe from right to left to access the Guest Dashboard. Your name, deck, stateroom, muster, reservation number, ship and dates of sail will display.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Click \\&quot;Start check-in\\&quot; in blue CTA box&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">2. Click the blue box indicating \"Start check-in\". The app will display all guests on the reservation -- simply check all the guests you want to check in.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Upload travel documentation (scan passport, etc.)&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">3. Scan your passport -- be sure to validate that the name on the reservation matches exactly the name listed on the passport!</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Upload travel documentation (scan passport, etc.)&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">4. Take a self photo when prompted. </span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Affirm Cruise Ticket Contract&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">5. After you affirm your cruise ticket contract, y</span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;You will be redirected to the Guest Account page&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">ou will be redirected to the Guest Account page. </span><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Click \\&quot;View SetSail Pass\\&quot; in blue CTA box&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Click \"View SetSail Pass\" in the blue box.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone)\\nIf your travel information exactly matches with what is under your reservation in the system, an \\&quot;Expedited Arrival\\&quot; demarkation will appear in the upper right-hand corner which gives you a faster, seamless boarding experience when in terminal&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone). iOS users can add this to their Apple Wallet.</span>\r\n\r\n<span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Your SetSail Pass will pop up (take a screenshot to have it readily available on your phone)\\nIf your travel information exactly matches with what is under your reservation in the system, an \\&quot;Expedited Arrival\\&quot; demarkation will appear in the upper right-hand corner which gives you a faster, seamless boarding experience when in terminal&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:{&quot;1&quot;:0},&quot;11&quot;:4,&quot;12&quot;:0}\">If you see the \"Expedited Arrival\" demarkation in the upper right corner of your reservation, you are good to go and we look forward to getting your party in the quickest manner possible!</span>'),(2939,336,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(2940,336,'content_faq','1'),(2941,336,'_content_faq','field_5d4c26b63bd77'),(2942,336,'select_posts_related',''),(2943,336,'_select_posts_related','field_5d4b2b239e75e'),(2944,336,'download_app_caribbean_digital','1'),(2945,336,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(2946,336,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(2947,336,'_link_app_ios','field_5d4c2862f5de5'),(2948,336,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(2949,336,'_link_app_android','field_5d4c287cf5de6'),(2950,336,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(2951,336,'_need_more_help','field_5d4c2771f5de3'),(2952,336,'author_news','2'),(2953,336,'_author_news','field_5d4b2aa11701b'),(2954,337,'_edit_lock','1568916766:1'),(2955,337,'_edit_last','1'),(2956,337,'url_video_featured',''),(2957,337,'_url_video_featured','field_5d4b2b239e718'),(2958,337,'content_faq_0_image_featured_row','616'),(2959,337,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(2960,337,'content_faq_0_text_row_content','<b>Why do I need to create a Guest Account?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The Guest Account allows us to identify you to help us personalize and optimize your vacation experience. It\'s the first step in taking advantage of digital capabilities such as pre-cruise planning, check-in, Expedited Arrival, Onboard Account/Folio (Royal Only), stateroom automation, and digital key.</span>\r\n\r\n<b>When should I create a Guest Account?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can create an account at any time; however, we recommend that you create an account prior to your cruise.</span>\r\n\r\n<b>Can I use the same login to access my Guest Account on both the Mobile App and website?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes, the Guest Account creates a single username and password to log in to both the Mobile Apps and websites across all brands (Royal Caribbean, Celebrity, Azamara).</span>\r\n\r\n<b>What is required to create a Guest Account?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">To create a Guest Account, you\'ll first need to accept the Terms of Service and Privacy Policy. After that, we\'ll need some basic information (First Name, Last Name, Date of Birth, E-Mail address, Password, Security Question and Security Answer). That\'s it, you\'re now ready to sail.</span>\r\n\r\n<b>What information is displayed in Guest Account?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The Guest Account Dashboard displays:</span>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Upcoming Cruises</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Past Cruises (web only)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Link a missing reservation</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Royal Gifts (Royal Caribbean websites only)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Courtesy Holds (Celebrity websites only)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Personal information (First Name, Middle Name, Last Name, Suffix, DOB, Gender, Email Address, Password, Security Question/Answer)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Loyalty information (loyalty number, loyalty status, loyalty points)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Offers and Communications opt in</span></li>\r\n 	<li><span style=\"font-weight: 400;\">GDPR information (Your Data Privacy Rights, Terms of Service, and Privacy Policy)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">FAQs</span></li>\r\n</ul>'),(2961,337,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(2962,337,'content_faq','1'),(2963,337,'_content_faq','field_5d4c26b63bd77'),(2964,337,'select_posts_related',''),(2965,337,'_select_posts_related','field_5d4b2b239e75e'),(2966,337,'download_app_caribbean_digital','1'),(2967,337,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(2968,337,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(2969,337,'_link_app_ios','field_5d4c2862f5de5'),(2970,337,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(2971,337,'_link_app_android','field_5d4c287cf5de6'),(2972,337,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(2973,337,'_need_more_help','field_5d4c2771f5de3'),(2974,337,'author_news','2'),(2975,337,'_author_news','field_5d4b2aa11701b'),(2986,343,'_wp_attached_file','2019/08/Check-In-2.png'),(2987,343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:22:\"2019/08/Check-In-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Check-In-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Check-In-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Check-In-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:23:\"Check-In-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:22:\"Check-In-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:23:\"Check-In-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:22:\"Check-In-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:22:\"Check-In-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:23:\"Check-In-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(2988,344,'_wp_attached_file','2019/08/Download-the-App-2.png'),(2989,344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:30:\"2019/08/Download-the-App-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Download-the-App-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Download-the-App-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Download-the-App-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"Download-the-App-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"Download-the-App-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"Download-the-App-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"Download-the-App-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"Download-the-App-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"Download-the-App-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(2990,345,'_wp_attached_file','2019/08/RCL_Ch-2at.png'),(2991,345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:22:\"2019/08/RCL_Ch-2at.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"RCL_Ch-2at-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"RCL_Ch-2at-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"RCL_Ch-2at-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:23:\"RCL_Ch-2at-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:22:\"RCL_Ch-2at-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:23:\"RCL_Ch-2at-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:22:\"RCL_Ch-2at-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:22:\"RCL_Ch-2at-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:23:\"RCL_Ch-2at-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(2992,346,'_wp_attached_file','2019/08/RCL_DigitalKey-2.png'),(2993,346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:28:\"2019/08/RCL_DigitalKey-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"RCL_DigitalKey-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"RCL_DigitalKey-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"RCL_DigitalKey-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"RCL_DigitalKey-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"RCL_DigitalKey-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"RCL_DigitalKey-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"RCL_DigitalKey-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"RCL_DigitalKey-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"RCL_DigitalKey-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(2996,348,'_wp_attached_file','2019/08/RCL_StateroomControls-2.png'),(2997,348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:35:\"2019/08/RCL_StateroomControls-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RCL_StateroomControls-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RCL_StateroomControls-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RCL_StateroomControls-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RCL_StateroomControls-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RCL_StateroomControls-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RCL_StateroomControls-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RCL_StateroomControls-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RCL_StateroomControls-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RCL_StateroomControls-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(2998,349,'_wp_attached_file','2019/08/RCL_XRay_Vision-2.png'),(2999,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:29:\"2019/08/RCL_XRay_Vision-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"RCL_XRay_Vision-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"RCL_XRay_Vision-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"RCL_XRay_Vision-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"RCL_XRay_Vision-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"RCL_XRay_Vision-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"RCL_XRay_Vision-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"RCL_XRay_Vision-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"RCL_XRay_Vision-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"RCL_XRay_Vision-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(3002,351,'_wp_attached_file','2019/08/Reservations_2-2.png'),(3003,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:28:\"2019/08/Reservations_2-2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Reservations_2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Reservations_2-2-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Reservations_2-2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"Reservations_2-2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"Reservations_2-2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"Reservations_2-2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_2-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_2-2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"Reservations_2-2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(3004,352,'_wp_attached_file','2019/08/Reservations_3-3.png'),(3005,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:672;s:4:\"file\";s:28:\"2019/08/Reservations_3-3.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Reservations_3-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Reservations_3-3-147x300.png\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Reservations_3-3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"Reservations_3-3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"Reservations_3-3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"Reservations_3-3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_3-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"Reservations_3-3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"Reservations_3-3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;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:{}}}'),(3006,353,'_edit_lock','1568383930:1'),(3007,353,'_edit_last','1'),(3012,356,'author_news','2'),(3013,356,'_author_news','field_5d3083fbbea51'),(3014,356,'select_brand','144'),(3015,356,'_select_brand','field_5d3084d736561'),(3016,356,'featured_post','0'),(3017,356,'_featured_post','field_5d30852c7c4e7'),(3018,356,'legend_featured_image',''),(3019,356,'_legend_featured_image','field_5d39e9d4ef8f8'),(3020,356,'select_posts_related',''),(3021,356,'_select_posts_related','field_5d3afdcff5db7'),(3026,358,'author_news','2'),(3027,358,'_author_news','field_5d3083fbbea51'),(3028,358,'select_brand','144'),(3029,358,'_select_brand','field_5d3084d736561'),(3030,358,'featured_post','0'),(3031,358,'_featured_post','field_5d30852c7c4e7'),(3032,358,'legend_featured_image',''),(3033,358,'_legend_featured_image','field_5d39e9d4ef8f8'),(3034,358,'select_posts_related',''),(3035,358,'_select_posts_related','field_5d3afdcff5db7'),(3038,361,'_wp_attached_file','2019/08/Screen-Shot-2019-08-12-at-3.08-e1565795266665.jpg'),(3039,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:984;s:6:\"height\";i:867;s:4:\"file\";s:57:\"2019/08/Screen-Shot-2019-08-12-at-3.08-e1565795266665.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-768x677.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-877x1024.jpg\";s:5:\"width\";i:877;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:58:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:58:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:58:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:58:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:58:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:57:\"Screen-Shot-2019-08-12-at-3.08-e1565795266665-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3044,362,'author_news','2'),(3045,362,'_author_news','field_5d3083fbbea51'),(3046,362,'select_brand','144'),(3047,362,'_select_brand','field_5d3084d736561'),(3048,362,'featured_post','0'),(3049,362,'_featured_post','field_5d30852c7c4e7'),(3050,362,'legend_featured_image',''),(3051,362,'_legend_featured_image','field_5d39e9d4ef8f8'),(3052,362,'select_posts_related',''),(3053,362,'_select_posts_related','field_5d3afdcff5db7'),(3068,367,'_edit_lock','1568916840:1'),(3070,367,'_edit_last','2'),(3071,367,'author_news','2'),(3072,367,'_author_news','field_5d4b2aa11701b'),(3073,367,'content_video','Celebrity Cruises introduces an innovative new way to experience your cruise.'),(3074,367,'_content_video','field_5d51bccfb1bc9'),(3075,367,'url_video','https://vimeo.com/344894438'),(3076,367,'_url_video','field_5d51bc767da39'),(3098,367,'_thumbnail_id','134'),(3172,367,'id_video','344895433'),(3173,367,'_id_video','field_5d51bc767da39'),(3184,380,'_edit_lock','1568916839:1'),(3185,380,'_edit_last','2'),(3186,380,'_thumbnail_id','604'),(3187,380,'author_news','2'),(3188,380,'_author_news','field_5d4b2aa11701b'),(3189,380,'content_video','Royal Caribbean\'s app is an easy to use tool designed to help you reduce friction from your vacation and enjoy your experience to the fullest.'),(3190,380,'_content_video','field_5d51bccfb1bc9'),(3191,380,'id_video','299734138'),(3192,380,'_id_video','field_5d51bc767da39'),(3193,381,'_edit_lock','1568916838:1'),(3194,381,'_edit_last','2'),(3195,381,'_thumbnail_id','304'),(3196,381,'author_news','2'),(3197,381,'_author_news','field_5d4b2aa11701b'),(3198,381,'content_video','Our goal is to get you from your car onboard in a matter of minutes. All we need from you is a few taps and swipes before you arrive at the terminal to help us out.'),(3199,381,'_content_video','field_5d51bccfb1bc9'),(3200,381,'id_video','344894438'),(3201,381,'_id_video','field_5d51bc767da39'),(3276,337,'_thumbnail_id','944'),(3277,391,'_edit_lock','1568916842:1'),(3278,391,'_edit_last','1'),(3279,391,'_thumbnail_id','611'),(3280,391,'url_video_featured',''),(3281,391,'_url_video_featured','field_5d4b2b239e718'),(3282,391,'content_faq_0_image_featured_row','343'),(3283,391,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3284,391,'content_faq_0_text_row_content','<b>If I check in on the web, will my SetSail Pass appear on the Mobile App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes, the SetSail Pass will appear on the Mobile App throughout embarkation day.</span>\r\n\r\n<b>If I qualify for expedited arrival, where should I go when I arrive at the terminal? </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">When the Guest arrives at the terminal, they should follow the \"EXPEDITED ARRIVAL\" signage, to have an expedited boarding experience.</span>\r\n\r\n<b>If I qualify for Expedited Arrival but my other travel companions do not, can they also utilize the Expedited Arrival lane?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes, all Guests in your party may use the Expedited Arrival lanes.</span>\r\n\r\n<b>Can I upload an existing photo from my mobile device instead of taking a selfie?</b> <span style=\"font-weight: 400;\">\r\n</span>No, you and your travel companions will need to take a new selfie using our app in order to complete Expedited Arrival.\r\n\r\n<b>Oh, no! My mobile device battery suddenly died at the terminal and the agents can’t scan the barcode. What should I do?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Take a deep breath and relax. The check-in agents can look up the your reservation once your arrive at the pier. </span>\r\n\r\n&nbsp;'),(3285,391,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3286,391,'content_faq','1'),(3287,391,'_content_faq','field_5d4c26b63bd77'),(3288,391,'select_posts_related',''),(3289,391,'_select_posts_related','field_5d4b2b239e75e'),(3290,391,'download_app_caribbean_digital','0'),(3291,391,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3292,391,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3293,391,'_need_more_help','field_5d4c2771f5de3'),(3294,391,'author_news','2'),(3295,391,'_author_news','field_5d4b2aa11701b'),(3296,392,'_edit_lock','1569260314:2'),(3297,392,'_edit_last','1'),(3298,392,'_thumbnail_id','609'),(3299,392,'url_video_featured',''),(3300,392,'_url_video_featured','field_5d4b2b239e718'),(3301,392,'content_faq_0_image_featured_row','601'),(3302,392,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3303,392,'content_faq_0_text_row_content','<b>What are Shore Excursion Kiosks?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Shore Excursion Kiosks are new digital tablets that allow you to browse and reserve shore excursions, print tickets, and manage reservations. </span>\r\n\r\n<b>Can I cancel a Shore Excursion reservation through the Kiosk?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can cancel reservations through the kiosk as long as they are within the cancellation window and tickets are not printed. Once the tickets are printed, you will need to visit the Shore Excursion Desk to process the cancellation.</span>\r\n\r\n<b>Can I print tickets at the Kiosk for reservations made using the Mobile App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes! You can manage reservations made via the Mobile App through the Kiosk. You can also print tickets for reservations made through the Mobile App. </span>\r\n\r\n<b>If I lose my printed tickets, can I re-print them at the Kiosk?\r\n</b><span style=\"font-weight: 400;\">No. If you lose your tickets, you\'ll need to visit the Shore Excursions Desk for the tickets to be reprinted. </span>'),(3304,392,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3305,392,'content_faq','1'),(3306,392,'_content_faq','field_5d4c26b63bd77'),(3307,392,'select_posts_related',''),(3308,392,'_select_posts_related','field_5d4b2b239e75e'),(3309,392,'download_app_caribbean_digital','0'),(3310,392,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3311,392,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3312,392,'_need_more_help','field_5d4c2771f5de3'),(3313,392,'author_news','2'),(3314,392,'_author_news','field_5d4b2aa11701b'),(3315,393,'_edit_lock','1568916884:1'),(3316,393,'_edit_last','1'),(3317,393,'url_video_featured',''),(3318,393,'_url_video_featured','field_5d4b2b239e718'),(3319,393,'content_faq_0_image_featured_row','409'),(3320,393,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3321,393,'content_faq_0_text_row_content','<b>What information can I see when I use Onboard Account via the App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You will be able to view your total outstanding balance, charge listings, charge details (venue, transaction date, number, buyer name), onboard credits, refunds and cruise information.</span>\r\n\r\n<b>How long will it take for a charge to reflect on the Mobile App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">A charge will be displayed in the Mobile App about 20 minutes after the purchase is made. You will need to be onboard and connected to ship WiFi for the updates to show.</span>\r\n\r\n<b>Can I see pre-cruises charges?​​​​​</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. Youwill only be able to see onboard charges through the Onboard Account or web browser.</span>\r\n\r\n<b>Will I still receive a printed copy of my Onboard Account on the last day of my cruise? </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes. Printed versions will continue to be distributed to staterooms on the last day of the cruise. Did you know you can also view your Onboard Account on your stateroom TV? Also, feel free to visit Guest Services/Relations to get a printed copy at any time during your voyage.</span>\r\n\r\n<b>Can I access my Onboard Account information post-cruise?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes. However, access is only available for Loyalty Guests sailing on Allure of the Seas at this time.</span>\r\n\r\n&nbsp;'),(3322,393,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3323,393,'content_faq','1'),(3324,393,'_content_faq','field_5d4c26b63bd77'),(3325,393,'select_posts_related',''),(3326,393,'_select_posts_related','field_5d4b2b239e75e'),(3327,393,'download_app_caribbean_digital','0'),(3328,393,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3329,393,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3330,393,'_need_more_help','field_5d4c2771f5de3'),(3331,393,'author_news','2'),(3332,393,'_author_news','field_5d4b2aa11701b'),(3333,394,'_edit_lock','1568916803:1'),(3334,394,'_edit_last','1'),(3335,394,'url_video_featured',''),(3336,394,'_url_video_featured','field_5d4b2b239e718'),(3337,394,'content_faq_0_image_featured_row','346'),(3338,394,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3339,394,'content_faq_0_text_row_content','<b>Will Digital Key replace the SeaPass card?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. The SeaPass card will still be provided. Digital Key is simply an enhanced digital experience that allows you to use the App to open your stateroom. </span>\r\n\r\n<b>Which door(s) does Digital Key grant access to?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Digital Key will only grant access to your assigned stateroom that is linked to your Guest Account. Some common areas based on loyalty may also be available.</span>\r\n\r\n<b>Is there a limited number of Digital Keys the Guest can download?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can only download one Digital Key per device. There are an unlimited number of devices they can use as long as they meet the compatibility requirements.</span>\r\n\r\n<b>What devices are compatible with Digital Key?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Compatible mobile devices must:</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Run on iOS 9.0 or higher (with access to App Store) / Android 6.0 or higher (with access to Play Store)</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Be compatible with Bluetooth</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Have the Mobile App installed and logged in with Guest Account credentials </span>'),(3340,394,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3341,394,'content_faq','1'),(3342,394,'_content_faq','field_5d4c26b63bd77'),(3343,394,'select_posts_related',''),(3344,394,'_select_posts_related','field_5d4b2b239e75e'),(3345,394,'download_app_caribbean_digital','0'),(3346,394,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3347,394,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3348,394,'_need_more_help','field_5d4c2771f5de3'),(3349,394,'author_news','2'),(3350,394,'_author_news','field_5d4b2aa11701b'),(3351,395,'_edit_lock','1568916988:1'),(3352,395,'_edit_last','1'),(3353,395,'url_video_featured',''),(3354,395,'_url_video_featured','field_5d4b2b239e718'),(3355,395,'content_faq_0_image_featured_row','567'),(3356,395,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3357,395,'content_faq_0_text_row_content','<b>Can content be streamed from a mobile device?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes. To stream content from a mobile device, you must purchase an internet package.</span>\r\n\r\n<b>How many TVs can be controlled with a mobile device at one time?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can only control one TV per device at a time.</span>\r\n\r\n<b>The TV remote is not working or is running out of battery. How can this be resolved?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can control the TV with their mobile device phone through the Celebrity Cruises App as long as it:</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Runs on iOS 9.0 or higher (with access to App Store) or Android 6.0 or higher (with access to Play Store)</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Has Celebrity Cruises App installed and logged in with their Guest Account to the current sailing</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Is connected to Celebrity-Wifi</span>\r\n\r\n<b>Can I order room service via MyTV?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. You can view the room service menu within the </span><i><span style=\"font-weight: 400;\">Ship Information</span></i><span style=\"font-weight: 400;\"> module but will need to place their order over the phone.</span>\r\n\r\n<b>How long does a movie rental last?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You have 24 hours from the time of purchase confirmation to watch the movie before having to re-purchase the rental. They can watch the movie an unlimited amount of times within the 24-hour period.</span>\r\n\r\n&nbsp;'),(3358,395,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3359,395,'content_faq','1'),(3360,395,'_content_faq','field_5d4c26b63bd77'),(3361,395,'select_posts_related',''),(3362,395,'_select_posts_related','field_5d4b2b239e75e'),(3363,395,'download_app_caribbean_digital','0'),(3364,395,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3365,395,'need_more_help','Check out our <a href=\"http://royaldigital.labcp.co\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3366,395,'_need_more_help','field_5d4c2771f5de3'),(3367,395,'author_news','2'),(3368,395,'_author_news','field_5d4b2aa11701b'),(3369,396,'_edit_lock','1568916767:1'),(3370,396,'_edit_last','1'),(3371,396,'url_video_featured',''),(3372,396,'_url_video_featured','field_5d4b2b239e718'),(3373,396,'content_faq_0_image_featured_row','348'),(3374,396,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3375,396,'content_faq_0_text_row_content','<b>Which three primary features are accessible through the touch panel?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Thermostat, lights and blinds are the primary features you can personalize through the stateroom touch panel. Depending on your ship, there may be additional settings such as languages, window lock control and energy savings that can be applied.</span>\r\n\r\n<b>Can the stateroom elements be controlled through the mobile app?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes. Most of the elements on the mobile app are the same as on the stateroom control panel. Elements such as lighting have additional features and capabilities while others like window lock are limited to the touch panel. </span>\r\n\r\n<b>Can I control multiple staterooms through the mobile app?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. The stateroom control will only access the assigned stateroom that is linked to your Guest Account.</span>\r\n\r\n<b>If I adjust the touch panel, will I also have to adjust the same element in the mobile app?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. Most information from the touch panel syncs with the stateroom controls in the mobile app within 15 seconds. However, while the thermostat temperature may sync, the thermostat scale will have to be updated manually.</span>\r\n\r\n&nbsp;'),(3376,396,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3377,396,'content_faq','1'),(3378,396,'_content_faq','field_5d4c26b63bd77'),(3379,396,'select_posts_related',''),(3380,396,'_select_posts_related','field_5d4b2b239e75e'),(3381,396,'download_app_caribbean_digital','1'),(3382,396,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3383,396,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3384,396,'_need_more_help','field_5d4c2771f5de3'),(3385,396,'author_news','2'),(3386,396,'_author_news','field_5d4b2aa11701b'),(3387,396,'_thumbnail_id','323'),(3388,397,'_edit_lock','1568916845:1'),(3389,397,'_edit_last','1'),(3390,397,'_thumbnail_id','547'),(3391,397,'url_video_featured',''),(3392,397,'_url_video_featured','field_5d4b2b239e718'),(3393,397,'content_faq_0_image_featured_row','345'),(3394,397,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3395,397,'content_faq_0_text_row_content','<b>What is Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Guest to Guest Chat is a new feature in the Royal Caribbean Official International App that allows you to chat with other guests using the app when onboard the ship.</span>\r\n\r\n<b>Can I chat with anyone on the ship?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Chat is automatically enabled for Guests with the same reservation number. To chat with other Guests, you will need to send a chat request to the specific individual.</span>\r\n\r\n<b>How am I notified of new chat messages?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The app status bar, where the chat entry point is located, will have a badge showing the number of unread messages in red.  Depending on your phone settings, you will also receive banner notification when using the app as well as notifications on the phone home screen if the app is active in the background.</span>\r\n\r\n<b>Is there an age restriction to use Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes, you must be 13 years or older to have a Guest Account, which is required for Guest to Guest Chat.</span>\r\n\r\n<b>What type of messaging is supported through Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can only send text messages and emojis. But we are always working on enhanced App features ... stay tuned!</span>'),(3396,397,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3397,397,'content_faq','1'),(3398,397,'_content_faq','field_5d4c26b63bd77'),(3399,397,'select_posts_related',''),(3400,397,'_select_posts_related','field_5d4b2b239e75e'),(3401,397,'download_app_caribbean_digital','0'),(3402,397,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3403,397,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3404,397,'_need_more_help','field_5d4c2771f5de3'),(3405,397,'author_news','2'),(3406,397,'_author_news','field_5d4b2aa11701b'),(3407,398,'_edit_lock','1568916804:1'),(3408,398,'_edit_last','1'),(3409,398,'_thumbnail_id','614'),(3410,398,'url_video_featured',''),(3411,398,'_url_video_featured','field_5d4b2b239e718'),(3412,398,'content_faq_0_image_featured_row','420'),(3413,398,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3414,398,'content_faq_0_text_row_content','<b>What is Augmented Reality?</b><span style=\"font-weight: 400;\">\r\n</span>\r\n\r\n<span style=\"font-weight: 400;\">Augmented Reality is the technology that integrates the digital world with the physical world. It adds additional layers of digital information to enhance the gaming experience. You will see the physical, real-world environment with superimposed computer-generated images.</span>\r\n\r\n<b>Why use Augmented Reality for games?</b><span style=\"font-weight: 400;\">\r\n</span>\r\n\r\n<span style=\"font-weight: 400;\">Use of Augmented Reality through the camera of a mobile device blurs the lines between digital gaming and reality and enhances the gaming experience.</span>\r\n\r\n<b>Where can I find the games on the ship?</b><span style=\"font-weight: 400;\">\r\n</span>\r\n\r\n<span style=\"font-weight: 400;\">You can find the games on the Boardwalk of select Royal Caribbean International ships.</span>\r\n\r\n<b>How do I start to play the game?</b><span style=\"font-weight: 400;\">\r\n</span>\r\n\r\n<span style=\"font-weight: 400;\">You must align your smartphone camera with the carnival posters on the Boardwalk and the game will launch automatically.</span>\r\n\r\n<b>Is WiFi connectivity required? Does the Guest have to pay for wifi?</b><span style=\"font-weight: 400;\">\r\n</span>\r\n\r\n<span style=\"font-weight: 400;\">Yes, you must be connected to the ship WiFi to play the game. And no, you do not need to purchase a WiFi package in order to play the games.</span>\r\n\r\n&nbsp;'),(3415,398,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3416,398,'content_faq','1'),(3417,398,'_content_faq','field_5d4c26b63bd77'),(3418,398,'select_posts_related',''),(3419,398,'_select_posts_related','field_5d4b2b239e75e'),(3420,398,'download_app_caribbean_digital','0'),(3421,398,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3422,398,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3423,398,'_need_more_help','field_5d4c2771f5de3'),(3424,398,'author_news','2'),(3425,398,'_author_news','field_5d4b2aa11701b'),(3426,399,'_edit_lock','1594231354:9'),(3427,399,'_edit_last','9'),(3428,399,'_thumbnail_id','134'),(3429,399,'url_video_featured',''),(3430,399,'_url_video_featured','field_5d4b2b239e718'),(3431,399,'content_faq_0_image_featured_row','938'),(3432,399,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(3433,399,'content_faq_0_text_row_content','<img class=\"alignnone  wp-image-940\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RC_SeaPass_Front_0919-1-240x300.png\" alt=\"\" width=\"579\" height=\"794\" />'),(3434,399,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(3435,399,'content_faq','2'),(3436,399,'_content_faq','field_5d4c26b63bd77'),(3437,399,'select_posts_related',''),(3438,399,'_select_posts_related','field_5d4b2b239e75e'),(3439,399,'download_app_caribbean_digital','0'),(3440,399,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(3441,399,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(3442,399,'_need_more_help','field_5d4c2771f5de3'),(3443,399,'author_news','2'),(3444,399,'_author_news','field_5d4b2aa11701b'),(3445,361,'_edit_lock','1565816011:1'),(3568,403,'_wp_attached_file','2019/08/Add-to-Calendar.png'),(3569,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:27:\"2019/08/Add-to-Calendar.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Add-to-Calendar-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:28:\"Add-to-Calendar-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:28:\"Add-to-Calendar-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:28:\"Add-to-Calendar-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:28:\"Add-to-Calendar-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:27:\"Add-to-Calendar-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3574,406,'_wp_attached_file','2019/08/Discover.png'),(3575,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:20:\"2019/08/Discover.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Discover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Discover-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Discover-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"Discover-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"Discover-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"Discover-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"Discover-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"Discover-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"Discover-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"Discover-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"Discover-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"Discover-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"Discover-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3576,407,'_wp_attached_file','2019/08/Download-the-App.png'),(3577,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:28:\"2019/08/Download-the-App.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Download-the-App-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Download-the-App-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Download-the-App-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"Download-the-App-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"Download-the-App-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"Download-the-App-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"Download-the-App-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"Download-the-App-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"Download-the-App-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:28:\"Download-the-App-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:28:\"Download-the-App-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:29:\"Download-the-App-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:28:\"Download-the-App-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3580,409,'_wp_attached_file','2019/08/Account-1.png'),(3581,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:21:\"2019/08/Account-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Account-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Account-1-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Account-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:22:\"Account-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:21:\"Account-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:22:\"Account-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:21:\"Account-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:21:\"Account-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:22:\"Account-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:21:\"Account-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:21:\"Account-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:22:\"Account-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:21:\"Account-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3584,411,'_wp_attached_file','2019/08/AL_Home-1.png'),(3585,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:21:\"2019/08/AL_Home-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"AL_Home-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:22:\"AL_Home-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:22:\"AL_Home-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:22:\"AL_Home-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:22:\"AL_Home-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:21:\"AL_Home-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3594,416,'_wp_attached_file','2019/08/RCL_Chat.png'),(3595,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:20:\"2019/08/RCL_Chat.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"RCL_Chat-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"RCL_Chat-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"RCL_Chat-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"RCL_Chat-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"RCL_Chat-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"RCL_Chat-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3596,417,'_wp_attached_file','2019/08/RCL_CheckIn_Selfie.png'),(3597,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:30:\"2019/08/RCL_CheckIn_Selfie.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"RCL_CheckIn_Selfie-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"RCL_CheckIn_Selfie-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"RCL_CheckIn_Selfie-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"RCL_CheckIn_Selfie-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:31:\"RCL_CheckIn_Selfie-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:30:\"RCL_CheckIn_Selfie-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3598,418,'_wp_attached_file','2019/08/RCL_CocoCay_PortPage.png'),(3599,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:32:\"2019/08/RCL_CocoCay_PortPage.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"RCL_CocoCay_PortPage-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"RCL_CocoCay_PortPage-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"RCL_CocoCay_PortPage-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"RCL_CocoCay_PortPage-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"RCL_CocoCay_PortPage-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"RCL_CocoCay_PortPage-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3602,420,'_wp_attached_file','2019/08/RCL_E270.png'),(3603,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:20:\"2019/08/RCL_E270.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"RCL_E270-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"RCL_E270-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"RCL_E270-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"RCL_E270-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"RCL_E270-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"RCL_E270-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"RCL_E270-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"RCL_E270-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"RCL_E270-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"RCL_E270-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"RCL_E270-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"RCL_E270-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"RCL_E270-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3604,421,'_wp_attached_file','2019/08/RCL_StateroomControls.png'),(3605,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:33:\"2019/08/RCL_StateroomControls.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"RCL_StateroomControls-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"RCL_StateroomControls-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"RCL_StateroomControls-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"RCL_StateroomControls-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"RCL_StateroomControls-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"RCL_StateroomControls-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3606,422,'_wp_attached_file','2019/08/RCL_VirtualConcierge.png'),(3607,422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:32:\"2019/08/RCL_VirtualConcierge.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"RCL_VirtualConcierge-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"RCL_VirtualConcierge-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"RCL_VirtualConcierge-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"RCL_VirtualConcierge-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"RCL_VirtualConcierge-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"RCL_VirtualConcierge-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3610,424,'_wp_attached_file','2019/08/Reservations_1.png'),(3611,424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:26:\"2019/08/Reservations_1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Reservations_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Reservations_1-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Reservations_1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:27:\"Reservations_1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:26:\"Reservations_1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:27:\"Reservations_1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:26:\"Reservations_1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:26:\"Reservations_1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:27:\"Reservations_1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:26:\"Reservations_1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:26:\"Reservations_1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:27:\"Reservations_1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:26:\"Reservations_1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3614,426,'_wp_attached_file','2019/08/Reservations_3.png'),(3615,426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:26:\"2019/08/Reservations_3.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Reservations_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Reservations_3-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Reservations_3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:27:\"Reservations_3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:26:\"Reservations_3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:27:\"Reservations_3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:26:\"Reservations_3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:26:\"Reservations_3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:27:\"Reservations_3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:26:\"Reservations_3-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:26:\"Reservations_3-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:27:\"Reservations_3-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:26:\"Reservations_3-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3620,429,'_wp_attached_file','2019/08/image001.jpg'),(3621,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:953;s:6:\"height\";i:541;s:4:\"file\";s:20:\"2019/08/image001.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image001-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"image001-768x436.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"image001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"image001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"image001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"image001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"image001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"image001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"image001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"image001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"image001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"image001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"image001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3622,361,'_wp_attachment_backup_sizes','a:12:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1168;s:4:\"file\";s:34:\"Screen-Shot-2019-08-12-at-3.08.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-768x897.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-877x1024.jpg\";s:5:\"width\";i:877;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-index-orig\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"related-index-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"featured-archive-orig\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"related-archive-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"list-archive-orig\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2019-08-12-at-3.08-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-single-orig\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2019-08-12-at-3.08-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(3624,317,'_edit_lock','1565802520:2'),(3625,406,'_edit_lock','1565802532:2'),(3626,418,'_edit_lock','1565802541:2'),(3635,429,'_edit_lock','1565804342:2'),(3636,307,'_edit_lock','1565804376:2'),(3637,343,'_edit_lock','1565804403:2'),(3665,440,'_wp_attached_file','2019/08/Snip20190814_11.png'),(3666,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:420;s:6:\"height\";i:398;s:4:\"file\";s:27:\"2019/08/Snip20190814_11.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Snip20190814_11-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:28:\"Snip20190814_11-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:28:\"Snip20190814_11-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:28:\"Snip20190814_11-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:28:\"Snip20190814_11-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:27:\"Snip20190814_11-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3669,323,'_edit_lock','1565872148:1'),(3718,162,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(3719,162,'_link_appstore','field_5d2f2772dcd08'),(3720,162,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_USq'),(3721,162,'_link_playstore','field_5d2f277fdcd09'),(3722,162,'discover_ship_text_link','Browse Spectrum of the Seas Sailings'),(3723,162,'_discover_ship_text_link','field_5d4d727f27026'),(3728,445,'_wp_attached_file','2019/08/F-15_vertical_deploy.jpg'),(3729,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:2149;s:4:\"file\";s:32:\"2019/08/F-15_vertical_deploy.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-195x300.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"F-15_vertical_deploy-768x1179.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"F-15_vertical_deploy-667x1024.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"F-15_vertical_deploy-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"F-15_vertical_deploy-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:33:\"F-15_vertical_deploy-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:703;s:2:\"x2\";i:1400;s:2:\"y2\";i:1637;s:14:\"original_width\";i:1400;s:15:\"original_height\";i:2149;}}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:5:{s:4:\"file\";s:33:\"F-15_vertical_deploy-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:474;s:2:\"x2\";i:1400;s:2:\"y2\";i:1262;s:14:\"original_width\";i:1400;s:15:\"original_height\";i:2149;}}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"F-15_vertical_deploy-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"F-15_vertical_deploy-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:32:\"F-15_vertical_deploy-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:703;s:2:\"x2\";i:1400;s:2:\"y2\";i:1637;s:14:\"original_width\";i:1400;s:15:\"original_height\";i:2149;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:24:\"Staff Sgt. Jeffrey Allen\";s:6:\"camera\";s:9:\"NIKON D1X\";s:7:\"caption\";s:43:\"Tyndall aerials of the 1st Fighter Squadron\";s:17:\"created_timestamp\";s:10:\"1060955042\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:15:\"030814-F-2171A-\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3730,446,'_wp_attached_file','2019/08/test.png'),(3731,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2611;s:6:\"height\";i:2048;s:4:\"file\";s:16:\"2019/08/test.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"test-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"test-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"test-768x602.png\";s:5:\"width\";i:768;s:6:\"height\";i:602;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"test-1024x803.png\";s:5:\"width\";i:1024;s:6:\"height\";i:803;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"test-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:17:\"test-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:16:\"test-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:17:\"test-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:16:\"test-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:16:\"test-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:17:\"test-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:16:\"test-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:16:\"test-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:17:\"test-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:16:\"test-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3744,447,'_wp_attached_file','2019/08/EQ19-AerialsFL111RC.png'),(3745,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2019/08/EQ19-AerialsFL111RC.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:32:\"EQ19-AerialsFL111RC-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:31:\"EQ19-AerialsFL111RC-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3748,449,'_wp_attached_file','2019/08/06_Hideaway_3718R.-1.png'),(3749,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2019/08/06_Hideaway_3718R.-1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"06_Hideaway_3718R.-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"06_Hideaway_3718R.-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3752,451,'_wp_attached_file','2019/08/CEL_CS_Crush_5769.png'),(3753,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/CEL_CS_Crush_5769.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"CEL_CS_Crush_5769-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"CEL_CS_Crush_5769-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3754,452,'_wp_attached_file','2019/08/CEL_CS_Oslo048.png'),(3755,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2019/08/CEL_CS_Oslo048.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:27:\"CEL_CS_Oslo048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:26:\"CEL_CS_Oslo048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3756,453,'_wp_attached_file','2019/08/CEL_EQ_Aerial076.png'),(3757,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2019/08/CEL_EQ_Aerial076.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:29:\"CEL_EQ_Aerial076-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:28:\"CEL_EQ_Aerial076-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3758,454,'_wp_attached_file','2019/08/CEL_EQ_CellarMasters01_297.png'),(3759,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:38:\"2019/08/CEL_EQ_CellarMasters01_297.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:39:\"CEL_EQ_CellarMasters01_297-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:38:\"CEL_EQ_CellarMasters01_297-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3760,455,'_wp_attached_file','2019/08/CEL_EQ_Martini_368.png'),(3761,455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2019/08/CEL_EQ_Martini_368.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:31:\"CEL_EQ_Martini_368-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:30:\"CEL_EQ_Martini_368-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3762,456,'_wp_attached_file','2019/08/Celebrity_Reflection.png'),(3763,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2019/08/Celebrity_Reflection.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"Celebrity_Reflection-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"Celebrity_Reflection-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3764,457,'_wp_attached_file','2019/08/CS-Conference-Room_Fixed.png'),(3765,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:36:\"2019/08/CS-Conference-Room_Fixed.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:37:\"CS-Conference-Room_Fixed-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:36:\"CS-Conference-Room_Fixed-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3766,458,'_wp_attached_file','2019/08/CS-Main-Theater.png'),(3767,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:27:\"2019/08/CS-Main-Theater.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:28:\"CS-Main-Theater-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:27:\"CS-Main-Theater-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3768,459,'_wp_attached_file','2019/08/CS-Rooftop-Terrace-Night-3.png'),(3769,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:38:\"2019/08/CS-Rooftop-Terrace-Night-3.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:39:\"CS-Rooftop-Terrace-Night-3-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:38:\"CS-Rooftop-Terrace-Night-3-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3770,460,'_wp_attached_file','2019/08/EQ-hero1.png'),(3771,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:20:\"2019/08/EQ-hero1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"EQ-hero1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"EQ-hero1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3772,461,'_wp_attached_file','2019/08/EQ19-AerialsFL047.png'),(3773,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/EQ19-AerialsFL047.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL047-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL047-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3774,462,'_wp_attached_file','2019/08/EQ19-AerialsFL111RC-1.png'),(3775,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:33:\"2019/08/EQ19-AerialsFL111RC-1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"EQ19-AerialsFL111RC-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"EQ19-AerialsFL111RC-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3776,463,'_wp_attached_file','2019/08/EQ19-AerialsFL287.png'),(3777,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/EQ19-AerialsFL287.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"EQ19-AerialsFL287-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"EQ19-AerialsFL287-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3778,464,'_wp_attached_file','2019/08/EQ19-CraftBarR.png'),(3779,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2019/08/EQ19-CraftBarR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:27:\"EQ19-CraftBarR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:26:\"EQ19-CraftBarR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3780,465,'_wp_attached_file','2019/08/EQ19-QsinePetitChef1R.png'),(3781,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:33:\"2019/08/EQ19-QsinePetitChef1R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"EQ19-QsinePetitChef1R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"EQ19-QsinePetitChef1R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3782,466,'_wp_attached_file','2019/08/ML-Class-Aerial_0338.png'),(3783,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2019/08/ML-Class-Aerial_0338.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_0338-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_0338-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3784,467,'_wp_attached_file','2019/08/ML-Class-Aerial_2025.png'),(3785,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2019/08/ML-Class-Aerial_2025.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"ML-Class-Aerial_2025-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"ML-Class-Aerial_2025-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3786,468,'_wp_attached_file','2019/08/RCI_Adventure_ExteriorLand_3.png'),(3787,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:40:\"2019/08/RCI_Adventure_ExteriorLand_3.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_3-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:40:\"RCI_Adventure_ExteriorLand_3-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3788,469,'_wp_attached_file','2019/08/RCI_Adventure_ExteriorLand_UR.png'),(3789,469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_Adventure_ExteriorLand_UR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_Adventure_ExteriorLand_UR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_Adventure_ExteriorLand_UR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3792,471,'_wp_attached_file','2019/08/RCI_AL_Allure_Capri_ret_RGB.png'),(3793,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2019/08/RCI_AL_Allure_Capri_ret_RGB.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:40:\"RCI_AL_Allure_Capri_ret_RGB-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:39:\"RCI_AL_Allure_Capri_ret_RGB-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3794,472,'_wp_attached_file','2019/08/RCI_AL_AQUA_theater_143.png'),(3795,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2019/08/RCI_AL_AQUA_theater_143.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:36:\"RCI_AL_AQUA_theater_143-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:35:\"RCI_AL_AQUA_theater_143-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3796,473,'_wp_attached_file','2019/08/RCI_AL_Drone_DJI_0061_RET_CMYK.png'),(3797,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:42:\"2019/08/RCI_AL_Drone_DJI_0061_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0061_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0061_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3798,474,'_wp_attached_file','2019/08/RCI_AL_Drone_DJI_0063_RET_CMYK.png'),(3799,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:42:\"2019/08/RCI_AL_Drone_DJI_0063_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:43:\"RCI_AL_Drone_DJI_0063_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:42:\"RCI_AL_Drone_DJI_0063_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3800,475,'_wp_attached_file','2019/08/RCI_AL-Aerial316R.png'),(3801,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/RCI_AL-Aerial316R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"RCI_AL-Aerial316R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"RCI_AL-Aerial316R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3802,476,'_wp_attached_file','2019/08/RCI_AL-AquatheaterH.png'),(3803,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2019/08/RCI_AL-AquatheaterH.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:32:\"RCI_AL-AquatheaterH-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:31:\"RCI_AL-AquatheaterH-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3804,477,'_wp_attached_file','2019/08/RCI_AL-OnAir02.png'),(3805,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2019/08/RCI_AL-OnAir02.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"RCI_AL-OnAir02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"RCI_AL-OnAir02-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"RCI_AL-OnAir02-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"RCI_AL-OnAir02-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;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:{}}}'),(3806,478,'_wp_attached_file','2019/08/RCI_BRMA-and-ID-Center-Stage-6.png'),(3807,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:42:\"2019/08/RCI_BRMA-and-ID-Center-Stage-6.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_BRMA-and-ID-Center-Stage-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"RCI_BRMA-and-ID-Center-Stage-6-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"RCI_BRMA-and-ID-Center-Stage-6-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"RCI_BRMA-and-ID-Center-Stage-6-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;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:{}}}'),(3808,479,'_wp_attached_file','2019/08/RCI_Brilliance_ExteriorMntn_2.png'),(3809,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_Brilliance_ExteriorMntn_2.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorMntn_2-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorMntn_2-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3810,480,'_wp_attached_file','2019/08/RCI_Brilliance_ExteriorSide_2.png'),(3811,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_Brilliance_ExteriorSide_2.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_Brilliance_ExteriorSide_2-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_Brilliance_ExteriorSide_2-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3812,481,'_wp_attached_file','2019/08/RCI_Brilliance_Theater.png'),(3813,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:34:\"2019/08/RCI_Brilliance_Theater.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"RCI_Brilliance_Theater-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"RCI_Brilliance_Theater-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3814,482,'_wp_attached_file','2019/08/RCI_Fleetwide_AerialGlacier.png'),(3815,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2019/08/RCI_Fleetwide_AerialGlacier.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:40:\"RCI_Fleetwide_AerialGlacier-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:39:\"RCI_Fleetwide_AerialGlacier-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3816,483,'_wp_attached_file','2019/08/RCI_GoH_Dan_Promenade_020_CMYK_RET.png'),(3817,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:46:\"2019/08/RCI_GoH_Dan_Promenade_020_CMYK_RET.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:47:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:46:\"RCI_GoH_Dan_Promenade_020_CMYK_RET-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3818,484,'_wp_attached_file','2019/08/RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET.png'),(3819,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:49:\"2019/08/RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:50:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:49:\"RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3820,485,'_wp_attached_file','2019/08/RCI_HM_AdvOcean-TheaterR.png'),(3821,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:36:\"2019/08/RCI_HM_AdvOcean-TheaterR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:37:\"RCI_HM_AdvOcean-TheaterR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:36:\"RCI_HM_AdvOcean-TheaterR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3822,486,'_wp_attached_file','2019/08/RCI_HM_Aerials_June2016_714R_Horizon_CMYK.png'),(3823,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:53:\"2019/08/RCI_HM_Aerials_June2016_714R_Horizon_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:54:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:53:\"RCI_HM_Aerials_June2016_714R_Horizon_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3824,487,'_wp_attached_file','2019/08/RCI_HM_aft_drone_MU22703_RET_CMYK.png'),(3825,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:45:\"2019/08/RCI_HM_aft_drone_MU22703_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:46:\"RCI_HM_aft_drone_MU22703_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:45:\"RCI_HM_aft_drone_MU22703_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3826,488,'_wp_attached_file','2019/08/RCI_HM_BionicBarR.png'),(3827,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/RCI_HM_BionicBarR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"RCI_HM_BionicBarR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"RCI_HM_BionicBarR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3828,489,'_wp_attached_file','2019/08/RCI_HM_DepartureFLL139_1_CMYK_RET.png'),(3829,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:45:\"2019/08/RCI_HM_DepartureFLL139_1_CMYK_RET.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:46:\"RCI_HM_DepartureFLL139_1_CMYK_RET-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:45:\"RCI_HM_DepartureFLL139_1_CMYK_RET-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3830,490,'_wp_attached_file','2019/08/RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK.png'),(3831,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:89:\"2019/08/RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:90:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:89:\"RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3832,491,'_wp_attached_file','2019/08/RCI_HM_JazzOn4R.png'),(3833,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:27:\"2019/08/RCI_HM_JazzOn4R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:28:\"RCI_HM_JazzOn4R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:27:\"RCI_HM_JazzOn4R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3834,492,'_wp_attached_file','2019/08/RCI_HM_NextCruiseR.png'),(3835,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2019/08/RCI_HM_NextCruiseR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:31:\"RCI_HM_NextCruiseR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:30:\"RCI_HM_NextCruiseR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3836,493,'_wp_attached_file','2019/08/RCI_HM_night_Drone_AFT_MU22703_RET_CMYK.png'),(3837,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:51:\"2019/08/RCI_HM_night_Drone_AFT_MU22703_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:52:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:51:\"RCI_HM_night_Drone_AFT_MU22703_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3838,494,'_wp_attached_file','2019/08/RCI_HM_Perfect_Storm_NIGHT_MU22703_RET.png'),(3839,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:50:\"2019/08/RCI_HM_Perfect_Storm_NIGHT_MU22703_RET.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"RCI_HM_Perfect_Storm_NIGHT_MU22703_RET-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3840,495,'_wp_attached_file','2019/08/RCI_HM_TheLivingRoomR.png'),(3841,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:33:\"2019/08/RCI_HM_TheLivingRoomR.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"RCI_HM_TheLivingRoomR-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"RCI_HM_TheLivingRoomR-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3842,496,'_wp_attached_file','2019/08/RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK.png'),(3843,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:73:\"2019/08/RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:74:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:73:\"RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3844,497,'_wp_attached_file','2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK.png'),(3845,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:82:\"2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3846,498,'_wp_attached_file','2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK.png'),(3847,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:82:\"2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:83:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3848,499,'_wp_attached_file','2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK.png'),(3849,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:81:\"2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:82:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:81:\"RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3850,500,'_wp_attached_file','2019/08/RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK.png'),(3851,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:68:\"2019/08/RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:69:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:68:\"RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3852,501,'_wp_attached_file','2019/08/RCI_LB_Liberty_AP_0086_4S.png'),(3853,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2019/08/RCI_LB_Liberty_AP_0086_4S.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0086_4S-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0086_4S-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3854,502,'_wp_attached_file','2019/08/RCI_LB_Liberty_AP_0100_4S.png'),(3855,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2019/08/RCI_LB_Liberty_AP_0100_4S.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"RCI_LB_Liberty_AP_0100_4S-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"RCI_LB_Liberty_AP_0100_4S-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3856,503,'_wp_attached_file','2019/08/RCI_LB_Liberty_drone_Still002.png'),(3857,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_LB_Liberty_drone_Still002.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still002-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still002-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3858,504,'_wp_attached_file','2019/08/RCI_LB_Liberty_drone_Still005.png'),(3859,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_LB_Liberty_drone_Still005.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still005-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still005-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3860,505,'_wp_attached_file','2019/08/RCI_LB_Liberty_drone_Still014.png'),(3861,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2019/08/RCI_LB_Liberty_drone_Still014.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_drone_Still014-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"RCI_LB_Liberty_drone_Still014-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3862,506,'_wp_attached_file','2019/08/RCI_LB_Liberty_MU23552_0061_V6.png'),(3863,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:42:\"2019/08/RCI_LB_Liberty_MU23552_0061_V6.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:43:\"RCI_LB_Liberty_MU23552_0061_V6-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:42:\"RCI_LB_Liberty_MU23552_0061_V6-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3864,507,'_wp_attached_file','2019/08/RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK.png'),(3865,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:62:\"2019/08/RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3866,508,'_wp_attached_file','2019/08/RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK.png'),(3867,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:62:\"2019/08/RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:63:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:62:\"RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3870,510,'_wp_attached_file','2019/08/RCI_Majesty_ChorusTheater.png'),(3871,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2019/08/RCI_Majesty_ChorusTheater.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"RCI_Majesty_ChorusTheater-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"RCI_Majesty_ChorusTheater-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3872,511,'_wp_attached_file','2019/08/RCI_MarinerAerial176.png'),(3873,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2019/08/RCI_MarinerAerial176.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:33:\"RCI_MarinerAerial176-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:32:\"RCI_MarinerAerial176-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3874,512,'_wp_attached_file','2019/08/RCI_MJ_Aerials2016-054F.png'),(3875,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2019/08/RCI_MJ_Aerials2016-054F.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-054F-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-054F-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3876,513,'_wp_attached_file','2019/08/RCI_MJ_Aerials2016-138R.png'),(3877,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2019/08/RCI_MJ_Aerials2016-138R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-138R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-138R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3878,514,'_wp_attached_file','2019/08/RCI_MJ_Aerials2016-165F.png'),(3879,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2019/08/RCI_MJ_Aerials2016-165F.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:36:\"RCI_MJ_Aerials2016-165F-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:35:\"RCI_MJ_Aerials2016-165F-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3880,515,'_wp_attached_file','2019/08/RCI_MJ-Boogie-Wonderland-3.png'),(3881,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:38:\"2019/08/RCI_MJ-Boogie-Wonderland-3.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:39:\"RCI_MJ-Boogie-Wonderland-3-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:38:\"RCI_MJ-Boogie-Wonderland-3-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3884,517,'_wp_attached_file','2019/08/RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK.png'),(3885,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:67:\"2019/08/RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:67:\"RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3886,518,'_wp_attached_file','2019/08/RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK.png'),(3887,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:60:\"2019/08/RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:61:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3888,519,'_wp_attached_file','2019/08/RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK.png'),(3889,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:69:\"2019/08/RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:70:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3890,520,'_wp_attached_file','2019/08/RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK.png'),(3891,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:58:\"2019/08/RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3892,521,'_wp_attached_file','2019/08/RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK.png'),(3893,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:58:\"2019/08/RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:59:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:58:\"RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3894,522,'_wp_attached_file','2019/08/RCI_NV-All-Access-5.png'),(3895,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2019/08/RCI_NV-All-Access-5.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:32:\"RCI_NV-All-Access-5-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:31:\"RCI_NV-All-Access-5-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3896,523,'_wp_attached_file','2019/08/RCI_Serenade_ExteriorHubbard_2.png'),(3897,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:42:\"2019/08/RCI_Serenade_ExteriorHubbard_2.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:43:\"RCI_Serenade_ExteriorHubbard_2-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:42:\"RCI_Serenade_ExteriorHubbard_2-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3898,524,'_wp_attached_file','2019/08/RCI_Serenade_ExteriorSide_3.png'),(3899,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2019/08/RCI_Serenade_ExteriorSide_3.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_3-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:39:\"RCI_Serenade_ExteriorSide_3-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3900,525,'_wp_attached_file','2019/08/RCI_Serenade_ExteriorSide_11.png'),(3901,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:40:\"2019/08/RCI_Serenade_ExteriorSide_11.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:41:\"RCI_Serenade_ExteriorSide_11-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:40:\"RCI_Serenade_ExteriorSide_11-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3902,526,'_wp_attached_file','2019/08/RCI_Serenade_InternetCafe.png'),(3903,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2019/08/RCI_Serenade_InternetCafe.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_InternetCafe-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_InternetCafe-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3904,527,'_wp_attached_file','2019/08/RCI_Serenade_VortexLounge.png'),(3905,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2019/08/RCI_Serenade_VortexLounge.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"RCI_Serenade_VortexLounge-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"RCI_Serenade_VortexLounge-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3906,528,'_wp_attached_file','2019/08/RCI_Serenade_YachtClub.png'),(3907,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:34:\"2019/08/RCI_Serenade_YachtClub.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"RCI_Serenade_YachtClub-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"RCI_Serenade_YachtClub-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3908,529,'_wp_attached_file','2019/08/RCI_VI_Norway_21.png'),(3909,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2019/08/RCI_VI_Norway_21.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_21-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_21-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3910,530,'_wp_attached_file','2019/08/RCI_VI_Norway_27.png'),(3911,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2019/08/RCI_VI_Norway_27.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_27-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_27-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3912,531,'_wp_attached_file','2019/08/RCI_VI_Norway_41.png'),(3913,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2019/08/RCI_VI_Norway_41.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:29:\"RCI_VI_Norway_41-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:28:\"RCI_VI_Norway_41-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3914,532,'_wp_attached_file','2019/08/RCI_Vision_PursersDesk.png'),(3915,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:34:\"2019/08/RCI_Vision_PursersDesk.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"RCI_Vision_PursersDesk-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"RCI_Vision_PursersDesk-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3916,533,'_wp_attached_file','2019/08/RCI_Vision_VikingCrown_2.png'),(3917,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:36:\"2019/08/RCI_Vision_VikingCrown_2.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:37:\"RCI_Vision_VikingCrown_2-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:36:\"RCI_Vision_VikingCrown_2-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3918,534,'_wp_attached_file','2019/08/RF-Aerial080F.png'),(3919,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:25:\"2019/08/RF-Aerial080F.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"RF-Aerial080F-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"RF-Aerial080F-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3920,535,'_wp_attached_file','2019/08/RF-Aerial703F.png'),(3921,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:25:\"2019/08/RF-Aerial703F.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"RF-Aerial703F-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"RF-Aerial703F-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3922,536,'_wp_attached_file','2019/08/RF-ColdRoomPeople.png'),(3923,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2019/08/RF-ColdRoomPeople.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"RF-ColdRoomPeople-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"RF-ColdRoomPeople-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3924,537,'_wp_attached_file','2019/08/RF-ConfRoom-A.png'),(3925,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:25:\"2019/08/RF-ConfRoom-A.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"RF-ConfRoom-A-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"RF-ConfRoom-A-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3926,538,'_wp_attached_file','2019/08/SI-Rox_26022012_0442F.png'),(3927,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:33:\"2019/08/SI-Rox_26022012_0442F.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"SI-Rox_26022012_0442F-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"SI-Rox_26022012_0442F-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3928,539,'_wp_attached_file','2019/08/Topper738R.png'),(3929,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:22:\"2019/08/Topper738R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Topper738R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Topper738R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Topper738R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Topper738R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Topper738R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:23:\"Topper738R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:22:\"Topper738R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:23:\"Topper738R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:22:\"Topper738R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:22:\"Topper738R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:23:\"Topper738R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:22:\"Topper738R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:22:\"Topper738R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:23:\"Topper738R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:22:\"Topper738R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3930,540,'_wp_attached_file','2019/08/WorldClassBar_6149R.png'),(3931,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2019/08/WorldClassBar_6149R.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-768x437.png\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1024x583.png\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:32:\"WorldClassBar_6149R-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:31:\"WorldClassBar_6149R-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3932,463,'_edit_lock','1565877792:3'),(3961,532,'_edit_lock','1565881709:3'),(3962,544,'_wp_attached_file','2019/08/Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001.jpg'),(3963,544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:69:\"2019/08/Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:1050;s:1:\"y\";i:0;s:2:\"x2\";i:3209;s:2:\"y2\";i:2160;s:14:\"original_width\";i:3840;s:15:\"original_height\";i:2160;}}s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:764;s:1:\"y\";i:395;s:2:\"x2\";i:3377;s:2:\"y2\";i:2137;s:14:\"original_width\";i:3840;s:15:\"original_height\";i:2160;}}s:15:\"related-archive\";a:5:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:1050;s:1:\"y\";i:0;s:2:\"x2\";i:3209;s:2:\"y2\";i:2160;s:14:\"original_width\";i:3840;s:15:\"original_height\";i:2160;}}s:12:\"list-archive\";a:4:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:5:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:1050;s:1:\"y\";i:0;s:2:\"x2\";i:3209;s:2:\"y2\";i:2160;s:14:\"original_width\";i:3840;s:15:\"original_height\";i:2160;}}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:70:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:69:\"Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:764;s:1:\"y\";i:395;s:2:\"x2\";i:3377;s:2:\"y2\";i:2137;s:14:\"original_width\";i:3840;s:15:\"original_height\";i:2160;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3964,544,'_edit_lock','1565890784:2'),(3965,544,'_edit_last','3'),(3966,393,'_thumbnail_id','451'),(3973,547,'_wp_attached_file','2019/08/Mel-Chat.jpg'),(3974,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:20:\"2019/08/Mel-Chat.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"Mel-Chat-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"Mel-Chat-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3975,548,'_wp_attached_file','2019/08/introducing-celebrity-edge.png'),(3976,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:38:\"2019/08/introducing-celebrity-edge.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"introducing-celebrity-edge-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:39:\"introducing-celebrity-edge-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:39:\"introducing-celebrity-edge-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:39:\"introducing-celebrity-edge-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:39:\"introducing-celebrity-edge-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:38:\"introducing-celebrity-edge-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(3977,549,'_wp_attached_file','2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002.jpg'),(3978,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:76:\"2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3979,550,'_wp_attached_file','2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001.jpg'),(3980,550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:76:\"2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4029,554,'_wp_attached_file','2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003.jpg'),(4030,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:76:\"2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4111,558,'_wp_attached_file','2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004.jpg'),(4112,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:76:\"2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:77:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:76:\"Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4129,560,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_32_07.Still010.jpg'),(4130,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_32_07.Still010.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_32_07.Still010-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_32_07.Still010-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4131,561,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_34_15.Still011.jpg'),(4132,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_34_15.Still011.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_34_15.Still011-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_34_15.Still011-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4149,395,'_thumbnail_id','561'),(4166,564,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_36_23.Still012.jpg'),(4167,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_36_23.Still012.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_36_23.Still012-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_36_23.Still012-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4168,564,'_edit_lock','1565895584:3'),(4169,564,'_edit_last','3'),(4202,567,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_31_06.Still002.jpg'),(4203,567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_31_06.Still002.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_31_06.Still002-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_31_06.Still002-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4220,569,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_09_12.Still013.jpg'),(4221,569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_09_12.Still013.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_09_12.Still013-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_09_12.Still013-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4222,570,'_wp_attached_file','2019/08/Stateroom-Selects.00_00_11_18.Still014.jpg'),(4223,570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2019/08/Stateroom-Selects.00_00_11_18.Still014.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"Stateroom-Selects.00_00_11_18.Still014-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"Stateroom-Selects.00_00_11_18.Still014-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4224,571,'_wp_attached_file','2019/08/digital-key.png'),(4225,571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:663;s:4:\"file\";s:23:\"2019/08/digital-key.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"digital-key-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"digital-key-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"digital-key-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:24:\"digital-key-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:23:\"digital-key-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:24:\"digital-key-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:23:\"digital-key-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:23:\"digital-key-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:24:\"digital-key-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:23:\"digital-key-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:23:\"digital-key-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:24:\"digital-key-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:23:\"digital-key-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(4226,394,'_thumbnail_id','570'),(4243,600,'_wp_attached_file','2019/08/Shorex-Selects.00_00_00_00.Still001.jpg'),(4244,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:47:\"2019/08/Shorex-Selects.00_00_00_00.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:48:\"Shorex-Selects.00_00_00_00.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:47:\"Shorex-Selects.00_00_00_00.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4245,601,'_wp_attached_file','2019/08/Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001.jpg'),(4246,601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1920;s:4:\"file\";s:89:\"2019/08/Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:90:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:89:\"Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4247,392,'description_post','Visit a Shore Excursion kiosk'),(4248,392,'_description_post','field_5d55bc8c63af0'),(4267,271,'_edit_last','2'),(4268,271,'hero_section_title','Frequently asked questions'),(4269,271,'_hero_section_title','field_5d55a345f8cdb'),(4270,271,'hero_section_image','600'),(4271,271,'_hero_section_image','field_5d55a424f8cdc'),(4272,271,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(4273,271,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(4274,271,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(4275,271,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(4276,271,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(4277,271,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(4278,271,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(4279,271,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(4280,271,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(4281,271,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(4282,271,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(4283,271,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(4284,271,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(4285,271,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(4286,271,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(4287,271,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(4288,271,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(4289,271,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(4290,271,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(4291,271,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(4292,271,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(4293,271,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(4294,271,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(4295,271,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(4296,271,'hero_section_links','6'),(4297,271,'_hero_section_links','field_5d55a451f8cdd'),(4298,271,'popular_features_title','Popular Features'),(4299,271,'_popular_features_title','field_5d55abb7ffa2d'),(4300,271,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(4301,271,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(4302,271,'popular_features_links_0_popular_features_link_title','Ships'),(4303,271,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(4304,271,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(4305,271,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(4306,271,'popular_features_links_1_popular_features_link_title','Guest Account'),(4307,271,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(4308,271,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(4309,271,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(4310,271,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(4311,271,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(4312,271,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(4313,271,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(4314,271,'popular_features_links_3_popular_features_link_title','Check-in'),(4315,271,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(4316,271,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(4317,271,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(4318,271,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(4319,271,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(4320,271,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(4321,271,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(4322,271,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(4323,271,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(4324,271,'popular_features_links','6'),(4325,271,'_popular_features_links','field_5d55ac6b2b75e'),(4326,271,'helpful_articles_title','Helpful articles and how-to\'s'),(4327,271,'_helpful_articles_title','field_5d55b136c34eb'),(4328,271,'post_image_right_title','Solving for the future of cruising.'),(4329,271,'_post_image_right_title','field_5d55b49247b3a'),(4330,271,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(4331,271,'_post_image_right_description','field_5d55b49b47b3b'),(4332,271,'post_image_right_title_link','Learn more'),(4333,271,'_post_image_right_title_link','field_5d55b4a747b3c'),(4334,271,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(4335,271,'_post_image_right_link','field_5d55b4b247b3d'),(4336,271,'post_image_right_image','527'),(4337,271,'_post_image_right_image','field_5d55b4be47b3e'),(4338,271,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(4339,271,'_post_image_left_title','field_5d55b69a7e8a7'),(4340,271,'post_image_left_link','https://vimeo.com/'),(4341,271,'_post_image_left_link','field_5d55b6a47e8a8'),(4342,271,'post_image_left_image','536'),(4343,271,'_post_image_left_image','field_5d55b6b47e8a9'),(4344,271,'select_posts','a:3:{i:0;s:3:\"392\";i:1;s:3:\"393\";i:2;s:3:\"952\";}'),(4345,271,'_select_posts','field_5d55ba1e32eec'),(4346,603,'hero_section_title','Frequenty asked questions'),(4347,603,'_hero_section_title','field_5d55a345f8cdb'),(4348,603,'hero_section_image','533'),(4349,603,'_hero_section_image','field_5d55a424f8cdc'),(4350,603,'hero_section_links_0_hero_section_link',' http://royaldigital.labcp.co'),(4351,603,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(4352,603,'hero_section_links_0_hero_section_link_title','What can i do with the mobile appp?'),(4353,603,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(4354,603,'hero_section_links_1_hero_section_link',' http://royaldigital.labcp.co'),(4355,603,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(4356,603,'hero_section_links_1_hero_section_link_title','What can i do with the mobile appp?'),(4357,603,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(4358,603,'hero_section_links_2_hero_section_link',' http://royaldigital.labcp.co'),(4359,603,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(4360,603,'hero_section_links_2_hero_section_link_title','What can i do with the mobile appp?'),(4361,603,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(4362,603,'hero_section_links_3_hero_section_link',' http://royaldigital.labcp.co'),(4363,603,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(4364,603,'hero_section_links_3_hero_section_link_title','What can i do with the mobile appp?'),(4365,603,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(4366,603,'hero_section_links_4_hero_section_link',' http://royaldigital.labcp.co'),(4367,603,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(4368,603,'hero_section_links_4_hero_section_link_title','What can i do with the mobile appp?'),(4369,603,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(4370,603,'hero_section_links_5_hero_section_link',' http://royaldigital.labcp.co'),(4371,603,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(4372,603,'hero_section_links_5_hero_section_link_title','What can i do with the mobile appp?'),(4373,603,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(4374,603,'hero_section_links','6'),(4375,603,'_hero_section_links','field_5d55a451f8cdd'),(4376,603,'popular_features_title','Popular Features'),(4377,603,'_popular_features_title','field_5d55abb7ffa2d'),(4378,603,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(4379,603,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(4380,603,'popular_features_links_0_popular_features_link_title','Ships'),(4381,603,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(4382,603,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(4383,603,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(4384,603,'popular_features_links_1_popular_features_link_title','Guest Account'),(4385,603,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(4386,603,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(4387,603,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(4388,603,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(4389,603,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(4390,603,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(4391,603,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(4392,603,'popular_features_links_3_popular_features_link_title','Check-in'),(4393,603,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(4394,603,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(4395,603,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(4396,603,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(4397,603,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(4398,603,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(4399,603,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(4400,603,'popular_features_links_5_popular_features_link_title','Onborad Wi-fi'),(4401,603,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(4402,603,'popular_features_links','6'),(4403,603,'_popular_features_links','field_5d55ac6b2b75e'),(4404,603,'helpful_articles_title','Helpful articles and how-to\'s'),(4405,603,'_helpful_articles_title','field_5d55b136c34eb'),(4406,603,'post_image_right_title','Solving for the future of cruising.'),(4407,603,'_post_image_right_title','field_5d55b49247b3a'),(4408,603,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(4409,603,'_post_image_right_description','field_5d55b49b47b3b'),(4410,603,'post_image_right_title_link','Learn more'),(4411,603,'_post_image_right_title_link','field_5d55b4a747b3c'),(4412,603,'post_image_right_link','http://royaldigital.labcp.co'),(4413,603,'_post_image_right_link','field_5d55b4b247b3d'),(4414,603,'post_image_right_image','527'),(4415,603,'_post_image_right_image','field_5d55b4be47b3e'),(4416,603,'post_image_left_title','Learn how to plan your vacation in minutes'),(4417,603,'_post_image_left_title','field_5d55b69a7e8a7'),(4418,603,'post_image_left_link','royaldigital.labcp.co'),(4419,603,'_post_image_left_link','field_5d55b6a47e8a8'),(4420,603,'post_image_left_image','536'),(4421,603,'_post_image_left_image','field_5d55b6b47e8a9'),(4422,603,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(4423,603,'_select_posts','field_5d55ba1e32eec'),(4424,604,'_wp_attached_file','2019/08/shorex-kiosk.jpg'),(4425,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/08/shorex-kiosk.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:25:\"shorex-kiosk-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:24:\"shorex-kiosk-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4462,607,'_wp_attached_file','2019/08/SR-chops-interior-dining-room.jpg'),(4463,607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2694;s:6:\"height\";i:1940;s:4:\"file\";s:41:\"2019/08/SR-chops-interior-dining-room.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:42:\"SR-chops-interior-dining-room-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:41:\"SR-chops-interior-dining-room-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:15:\"Client Supplied\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:115:\"empty onboard Chops Restaurant with plush red walls, dining, serenade of the seas, sr, radiance class, public rooms\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:26:\"RCI_SR_ChopsRestaurant.tif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4464,332,'description_post','Use your App to make reservations'),(4465,332,'_description_post','field_5d55bc8c63af0'),(4484,609,'_wp_attached_file','2019/08/SY-shorex-shore-excursion-kiosk-ipad-ipads-desk.jpg'),(4485,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4282;s:6:\"height\";i:3082;s:4:\"file\";s:59:\"2019/08/SY-shorex-shore-excursion-kiosk-ipad-ipads-desk.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:60:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:59:\"SY-shorex-shore-excursion-kiosk-ipad-ipads-desk-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:34:\"the shore excursions kiosks/ipads.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:34:\"the shore excursions kiosks/ipads.\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4504,611,'_wp_attached_file','2019/08/Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001.jpg'),(4505,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:71:\"2019/08/Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:72:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:71:\"Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4506,391,'description_post','Arrival and departure: what to expect'),(4507,391,'_description_post','field_5d55bc8c63af0'),(4526,613,'_wp_attached_file','2019/08/two70_exp_.jpg'),(4527,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2019/08/two70_exp_.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"two70_exp_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"two70_exp_-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"two70_exp_-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:22:\"two70_exp_-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:22:\"two70_exp_-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:22:\"two70_exp_-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:22:\"two70_exp_-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:22:\"two70_exp_-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:23:\"two70_exp_-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:22:\"two70_exp_-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4528,614,'_wp_attached_file','2019/08/two70_exp_-Correct.jpg'),(4529,614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:30:\"2019/08/two70_exp_-Correct.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:31:\"two70_exp_-Correct-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:30:\"two70_exp_-Correct-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4530,398,'description_post','What is Augmented Reality?'),(4531,398,'_description_post','field_5d55bc8c63af0'),(4550,616,'_wp_attached_file','2019/08/guest-account.png'),(4551,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1334;s:4:\"file\";s:25:\"2019/08/guest-account.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"guest-account-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"guest-account-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"guest-account-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"guest-account-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"guest-account-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"guest-account-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"guest-account-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"guest-account-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"guest-account-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"guest-account-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"guest-account-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"guest-account-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"guest-account-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"guest-account-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(4552,337,'description_post','What does a Guest Accout do?'),(4553,337,'_description_post','field_5d55bc8c63af0'),(4576,618,'_wp_attached_file','2019/08/image-1.png'),(4577,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1916;s:6:\"height\";i:936;s:4:\"file\";s:19:\"2019/08/image-1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"image-1-768x375.png\";s:5:\"width\";i:768;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"image-1-1024x500.png\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:20:\"image-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:19:\"image-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:20:\"image-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:19:\"image-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:19:\"image-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:20:\"image-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:19:\"image-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:19:\"image-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:20:\"image-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:19:\"image-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(4694,395,'description_post','MyTV App description'),(4695,395,'_description_post','field_5d55bc8c63af0'),(4714,397,'description_post','Chat using the RCL App'),(4715,397,'_description_post','field_5d55bc8c63af0'),(4716,626,'url_video_featured',''),(4717,626,'_url_video_featured','field_5d4b2b239e718'),(4718,626,'content_faq_0_image_featured_row','345'),(4719,626,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(4720,626,'content_faq_0_text_row_content','<b>What is Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Guest to Guest Chat is a new feature in the Royal Caribbean Official International App that allows you to chat with other guests using the app when onboard the ship.</span>\r\n\r\n<b>Can I chat with anyone on the ship?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Chat is automatically enabled for Guests with the same reservation number. To chat with other Guests, you will need to send a chat request to the specific individual.</span>\r\n\r\n<b>How am I notified of new chat messages?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The app status bar, where the chat entry point is located, will have a badge showing the number of unread messages in red.  Depending on your phone settings, you will also receive banner notification when using the app as well as notifications on the phone home screen if the app is active in the background.</span>\r\n\r\n<b>Is there an age restriction to use Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Yes, you must be 13 years or older to have a Guest Account, which is required for Guest to Guest Chat.</span>\r\n\r\n<b>What type of messaging is supported through Guest to Guest Chat?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">You can only send text messages and emojis. But we are always working on enhanced App features ... stay tuned!</span>'),(4721,626,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(4722,626,'content_faq','1'),(4723,626,'_content_faq','field_5d4c26b63bd77'),(4724,626,'select_posts_related',''),(4725,626,'_select_posts_related','field_5d4b2b239e75e'),(4726,626,'download_app_caribbean_digital','0'),(4727,626,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(4728,626,'need_more_help','Check out our <a href=\"http://royaldigital.labcp.co\">Suport</a> page for more answers or <a href=\"http://royaldigital.labcp.co\">get in touch</a> with us.'),(4729,626,'_need_more_help','field_5d4c2771f5de3'),(4730,626,'author_news',''),(4731,626,'_author_news','field_5d4b2aa11701b'),(4732,626,'description_post',''),(4733,626,'_description_post','field_5d55bc8c63af0'),(4734,628,'hero_section_title','Frequenty asked questions'),(4735,628,'_hero_section_title','field_5d55a345f8cdb'),(4736,628,'hero_section_image','533'),(4737,628,'_hero_section_image','field_5d55a424f8cdc'),(4738,628,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(4739,628,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(4740,628,'hero_section_links_0_hero_section_link_title','What can i do with the mobile appp?'),(4741,628,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(4742,628,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(4743,628,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(4744,628,'hero_section_links_1_hero_section_link_title','What can i do with the mobile appp?'),(4745,628,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(4746,628,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(4747,628,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(4748,628,'hero_section_links_2_hero_section_link_title','What can i do with the mobile appp?'),(4749,628,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(4750,628,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co'),(4751,628,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(4752,628,'hero_section_links_3_hero_section_link_title','What can i do with the mobile appp?'),(4753,628,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(4754,628,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co'),(4755,628,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(4756,628,'hero_section_links_4_hero_section_link_title','What can i do with the mobile appp?'),(4757,628,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(4758,628,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(4759,628,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(4760,628,'hero_section_links_5_hero_section_link_title','What can i do with the mobile appp?'),(4761,628,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(4762,628,'hero_section_links','6'),(4763,628,'_hero_section_links','field_5d55a451f8cdd'),(4764,628,'popular_features_title','Popular Features'),(4765,628,'_popular_features_title','field_5d55abb7ffa2d'),(4766,628,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(4767,628,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(4768,628,'popular_features_links_0_popular_features_link_title','Ships'),(4769,628,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(4770,628,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(4771,628,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(4772,628,'popular_features_links_1_popular_features_link_title','Guest Account'),(4773,628,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(4774,628,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(4775,628,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(4776,628,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(4777,628,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(4778,628,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(4779,628,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(4780,628,'popular_features_links_3_popular_features_link_title','Check-in'),(4781,628,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(4782,628,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(4783,628,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(4784,628,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(4785,628,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(4786,628,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(4787,628,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(4788,628,'popular_features_links_5_popular_features_link_title','Onborad Wi-fi'),(4789,628,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(4790,628,'popular_features_links','6'),(4791,628,'_popular_features_links','field_5d55ac6b2b75e'),(4792,628,'helpful_articles_title','Helpful articles and how-to\'s'),(4793,628,'_helpful_articles_title','field_5d55b136c34eb'),(4794,628,'post_image_right_title','Solving for the future of cruising.'),(4795,628,'_post_image_right_title','field_5d55b49247b3a'),(4796,628,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(4797,628,'_post_image_right_description','field_5d55b49b47b3b'),(4798,628,'post_image_right_title_link','Learn more'),(4799,628,'_post_image_right_title_link','field_5d55b4a747b3c'),(4800,628,'post_image_right_link','http://royaldigital.labcp.co'),(4801,628,'_post_image_right_link','field_5d55b4b247b3d'),(4802,628,'post_image_right_image','527'),(4803,628,'_post_image_right_image','field_5d55b4be47b3e'),(4804,628,'post_image_left_title','Learn how to plan your vacation in minutes'),(4805,628,'_post_image_left_title','field_5d55b69a7e8a7'),(4806,628,'post_image_left_link','https://vimeo.com/344894438'),(4807,628,'_post_image_left_link','field_5d55b6a47e8a8'),(4808,628,'post_image_left_image','536'),(4809,628,'_post_image_left_image','field_5d55b6b47e8a9'),(4810,628,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(4811,628,'_select_posts','field_5d55ba1e32eec'),(4860,574,'_edit_lock','1565988347:1'),(4861,574,'_edit_last','1'),(4910,271,'seletc_type_link','Vídeo'),(4911,271,'_seletc_type_link','field_5d57093fdc431'),(4912,633,'hero_section_title','Frequenty asked questions'),(4913,633,'_hero_section_title','field_5d55a345f8cdb'),(4914,633,'hero_section_image','533'),(4915,633,'_hero_section_image','field_5d55a424f8cdc'),(4916,633,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(4917,633,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(4918,633,'hero_section_links_0_hero_section_link_title','What can i do with the mobile appp?'),(4919,633,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(4920,633,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(4921,633,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(4922,633,'hero_section_links_1_hero_section_link_title','What can i do with the mobile appp?'),(4923,633,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(4924,633,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(4925,633,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(4926,633,'hero_section_links_2_hero_section_link_title','What can i do with the mobile appp?'),(4927,633,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(4928,633,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co'),(4929,633,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(4930,633,'hero_section_links_3_hero_section_link_title','What can i do with the mobile appp?'),(4931,633,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(4932,633,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co'),(4933,633,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(4934,633,'hero_section_links_4_hero_section_link_title','What can i do with the mobile appp?'),(4935,633,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(4936,633,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(4937,633,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(4938,633,'hero_section_links_5_hero_section_link_title','What can i do with the mobile appp?'),(4939,633,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(4940,633,'hero_section_links','6'),(4941,633,'_hero_section_links','field_5d55a451f8cdd'),(4942,633,'popular_features_title','Popular Features'),(4943,633,'_popular_features_title','field_5d55abb7ffa2d'),(4944,633,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(4945,633,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(4946,633,'popular_features_links_0_popular_features_link_title','Ships'),(4947,633,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(4948,633,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(4949,633,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(4950,633,'popular_features_links_1_popular_features_link_title','Guest Account'),(4951,633,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(4952,633,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(4953,633,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(4954,633,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(4955,633,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(4956,633,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(4957,633,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(4958,633,'popular_features_links_3_popular_features_link_title','Check-in'),(4959,633,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(4960,633,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(4961,633,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(4962,633,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(4963,633,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(4964,633,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(4965,633,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(4966,633,'popular_features_links_5_popular_features_link_title','Onborad Wi-fi'),(4967,633,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(4968,633,'popular_features_links','6'),(4969,633,'_popular_features_links','field_5d55ac6b2b75e'),(4970,633,'helpful_articles_title','Helpful articles and how-to\'s'),(4971,633,'_helpful_articles_title','field_5d55b136c34eb'),(4972,633,'post_image_right_title','Solving for the future of cruising.'),(4973,633,'_post_image_right_title','field_5d55b49247b3a'),(4974,633,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(4975,633,'_post_image_right_description','field_5d55b49b47b3b'),(4976,633,'post_image_right_title_link','Learn more'),(4977,633,'_post_image_right_title_link','field_5d55b4a747b3c'),(4978,633,'post_image_right_link','http://royaldigital.labcp.co'),(4979,633,'_post_image_right_link','field_5d55b4b247b3d'),(4980,633,'post_image_right_image','527'),(4981,633,'_post_image_right_image','field_5d55b4be47b3e'),(4982,633,'post_image_left_title','Learn how to plan your vacation in minutes'),(4983,633,'_post_image_left_title','field_5d55b69a7e8a7'),(4984,633,'post_image_left_link','https://vimeo.com/'),(4985,633,'_post_image_left_link','field_5d55b6a47e8a8'),(4986,633,'post_image_left_image','536'),(4987,633,'_post_image_left_image','field_5d55b6b47e8a9'),(4988,633,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(4989,633,'_select_posts','field_5d55ba1e32eec'),(4990,633,'seletc_type_link','Link'),(4991,633,'_seletc_type_link','field_5d57093fdc431'),(4992,271,'post_image_left_id_video','344894438'),(4993,271,'_post_image_left_id_video','field_5d570987dc432'),(4994,634,'hero_section_title','Frequenty asked questions'),(4995,634,'_hero_section_title','field_5d55a345f8cdb'),(4996,634,'hero_section_image','533'),(4997,634,'_hero_section_image','field_5d55a424f8cdc'),(4998,634,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(4999,634,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(5000,634,'hero_section_links_0_hero_section_link_title','What can i do with the mobile appp?'),(5001,634,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(5002,634,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(5003,634,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(5004,634,'hero_section_links_1_hero_section_link_title','What can i do with the mobile appp?'),(5005,634,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(5006,634,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(5007,634,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(5008,634,'hero_section_links_2_hero_section_link_title','What can i do with the mobile appp?'),(5009,634,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(5010,634,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co'),(5011,634,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(5012,634,'hero_section_links_3_hero_section_link_title','What can i do with the mobile appp?'),(5013,634,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(5014,634,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co'),(5015,634,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(5016,634,'hero_section_links_4_hero_section_link_title','What can i do with the mobile appp?'),(5017,634,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(5018,634,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(5019,634,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(5020,634,'hero_section_links_5_hero_section_link_title','What can i do with the mobile appp?'),(5021,634,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(5022,634,'hero_section_links','6'),(5023,634,'_hero_section_links','field_5d55a451f8cdd'),(5024,634,'popular_features_title','Popular Features'),(5025,634,'_popular_features_title','field_5d55abb7ffa2d'),(5026,634,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(5027,634,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(5028,634,'popular_features_links_0_popular_features_link_title','Ships'),(5029,634,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(5030,634,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(5031,634,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(5032,634,'popular_features_links_1_popular_features_link_title','Guest Account'),(5033,634,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(5034,634,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(5035,634,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(5036,634,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(5037,634,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(5038,634,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(5039,634,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(5040,634,'popular_features_links_3_popular_features_link_title','Check-in'),(5041,634,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(5042,634,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(5043,634,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(5044,634,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(5045,634,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(5046,634,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(5047,634,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(5048,634,'popular_features_links_5_popular_features_link_title','Onborad Wi-fi'),(5049,634,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(5050,634,'popular_features_links','6'),(5051,634,'_popular_features_links','field_5d55ac6b2b75e'),(5052,634,'helpful_articles_title','Helpful articles and how-to\'s'),(5053,634,'_helpful_articles_title','field_5d55b136c34eb'),(5054,634,'post_image_right_title','Solving for the future of cruising.'),(5055,634,'_post_image_right_title','field_5d55b49247b3a'),(5056,634,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(5057,634,'_post_image_right_description','field_5d55b49b47b3b'),(5058,634,'post_image_right_title_link','Learn more'),(5059,634,'_post_image_right_title_link','field_5d55b4a747b3c'),(5060,634,'post_image_right_link','http://royaldigital.labcp.co'),(5061,634,'_post_image_right_link','field_5d55b4b247b3d'),(5062,634,'post_image_right_image','527'),(5063,634,'_post_image_right_image','field_5d55b4be47b3e'),(5064,634,'post_image_left_title','Learn how to plan your vacation in minutes'),(5065,634,'_post_image_left_title','field_5d55b69a7e8a7'),(5066,634,'post_image_left_link','https://vimeo.com/'),(5067,634,'_post_image_left_link','field_5d55b6a47e8a8'),(5068,634,'post_image_left_image','536'),(5069,634,'_post_image_left_image','field_5d55b6b47e8a9'),(5070,634,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(5071,634,'_select_posts','field_5d55ba1e32eec'),(5072,634,'seletc_type_link','Vídeo'),(5073,634,'_seletc_type_link','field_5d57093fdc431'),(5074,634,'post_image_left_id_video','344894438'),(5075,634,'_post_image_left_id_video','field_5d570987dc432'),(5076,17,'subtitle_hero','You may be wondering…'),(5077,17,'_subtitle_hero','field_5d5711764ff01'),(5078,17,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(5079,17,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(5080,17,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(5081,17,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(5082,17,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(5083,17,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(5084,17,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(5085,17,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(5086,17,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(5087,17,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(5088,17,'hero_section_links_2_hero_section_link_title','What are our digital capabilities?'),(5089,17,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(5090,17,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(5091,17,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(5092,17,'hero_section_links_3_hero_section_link_title','How can you join the RCL digital team?'),(5093,17,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(5094,17,'hero_section_links_4_hero_section_link',''),(5095,17,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(5096,17,'hero_section_links_4_hero_section_link_title',''),(5097,17,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(5098,17,'hero_section_links_5_hero_section_link',''),(5099,17,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(5100,17,'hero_section_links_5_hero_section_link_title',''),(5101,17,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(5102,17,'hero_section_links','6'),(5103,17,'_hero_section_links','field_5d5711cf21851'),(5104,639,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(5105,639,'_title_hero','field_5d2cbfcfc7b2b'),(5106,639,'title_quote','Tech that'),(5107,639,'_title_quote','field_5d2cc09b51dfa'),(5108,639,'title_strong_quote','ships'),(5109,639,'_title_strong_quote','field_5d2cc0db51dfc'),(5110,639,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(5111,639,'_description_quote','field_5d2cc0a851dfb'),(5112,639,'imagem_quote','45'),(5113,639,'_imagem_quote','field_5d2cc0ed51dfd'),(5114,639,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(5115,639,'_description_blockquote','field_5d2cc22c9da9a'),(5116,639,'author_blockquote','Richard Fain, in an interview with'),(5117,639,'_author_blockquote','field_5d2cc25a9da9b'),(5118,639,'company','TechRepublic'),(5119,639,'_company','field_5d2cc2769da9c'),(5120,639,'company_blockquote','TechRepublic'),(5121,639,'_company_blockquote','field_5d2cc2769da9c'),(5122,639,'title_featured_i','Tech EDGE'),(5123,639,'_title_featured_i','field_5d2cc41890f84'),(5124,639,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(5125,639,'_description_featured_i','field_5d2cc42890f85'),(5126,639,'seletc_type_link_featured_i','Link'),(5127,639,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(5128,639,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(5129,639,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(5130,639,'imagem_featured_i','61'),(5131,639,'_imagem_featured_i','field_5d2cc71559443'),(5132,639,'title_info_numbers','Digital by<br> the numbers'),(5133,639,'_title_info_numbers','field_5d2cc7e517635'),(5134,639,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(5135,639,'_description_info_number','field_5d2cc7f817636'),(5136,639,'app_downloads','2M'),(5137,639,'_app_downloads','field_5d2cc83e17637'),(5138,639,'active_users','900K'),(5139,639,'_active_users','field_5d2cc84617638'),(5140,639,'average_ios_rating','4.6'),(5141,639,'_average_ios_rating','field_5d2cc85217639'),(5142,639,'crew_checkins','14k'),(5143,639,'_crew_checkins','field_5d2cc8631763a'),(5144,639,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(5145,639,'_title_featured_ii','field_5d2cc9741153c'),(5146,639,'description_featured_ii',''),(5147,639,'_description_featured_ii','field_5d2cc97e1153d'),(5148,639,'imagem_featured_ii','77'),(5149,639,'_imagem_featured_ii','field_5d2cc98c1153e'),(5150,639,'seletc_type_link_featured_ii','Link'),(5151,639,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(5152,639,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(5153,639,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(5154,639,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(5155,639,'_title_featured_iii','field_5d2ccafff022a'),(5156,639,'description_featured_iii',''),(5157,639,'_description_featured_iii','field_5d2ccb0cf022b'),(5158,639,'imagem_featured_iii','85'),(5159,639,'_imagem_featured_iii','field_5d2ccb21f022c'),(5160,639,'seletc_type_link_featured_iii','Vídeo'),(5161,639,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(5162,639,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(5163,639,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(5164,639,'subtitle_hero','Our guests ask about…'),(5165,639,'_subtitle_hero','field_5d5711764ff01'),(5166,639,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(5167,639,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(5168,639,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(5169,639,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(5170,639,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(5171,639,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(5172,639,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(5173,639,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(5174,639,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(5175,639,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(5176,639,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(5177,639,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(5178,639,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(5179,639,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(5180,639,'hero_section_links_3_hero_section_link_title','Is the app free?'),(5181,639,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(5182,639,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(5183,639,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(5184,639,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(5185,639,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(5186,639,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(5187,639,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(5188,639,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(5189,639,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(5190,639,'hero_section_links','6'),(5191,639,'_hero_section_links','field_5d5711cf21851'),(5192,17,'featured_faq_title','Where tech meets travel'),(5193,17,'_featured_faq_title','field_5d57145bc652e'),(5194,17,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(5195,17,'_featured_faq_description','field_5d57146bc652f'),(5196,17,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(5197,17,'_featured_faq_link','field_5d57147ec6530'),(5198,17,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(5199,17,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(5200,17,'popular_features_links_0_popular_features_link_title','Our App'),(5201,17,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(5202,17,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(5203,17,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(5204,17,'popular_features_links_1_popular_features_link_title','Check-in'),(5205,17,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(5206,17,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(5207,17,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(5208,17,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(5209,17,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(5210,17,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(5211,17,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(5212,17,'popular_features_links_3_popular_features_link_title','Guest Account'),(5213,17,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(5222,17,'popular_features_links','4'),(5223,17,'_popular_features_links','field_5d5714d1c6531'),(5224,647,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(5225,647,'_title_hero','field_5d2cbfcfc7b2b'),(5226,647,'title_quote','Tech that'),(5227,647,'_title_quote','field_5d2cc09b51dfa'),(5228,647,'title_strong_quote','ships'),(5229,647,'_title_strong_quote','field_5d2cc0db51dfc'),(5230,647,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(5231,647,'_description_quote','field_5d2cc0a851dfb'),(5232,647,'imagem_quote','45'),(5233,647,'_imagem_quote','field_5d2cc0ed51dfd'),(5234,647,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(5235,647,'_description_blockquote','field_5d2cc22c9da9a'),(5236,647,'author_blockquote','Richard Fain, in an interview with'),(5237,647,'_author_blockquote','field_5d2cc25a9da9b'),(5238,647,'company','TechRepublic'),(5239,647,'_company','field_5d2cc2769da9c'),(5240,647,'company_blockquote','TechRepublic'),(5241,647,'_company_blockquote','field_5d2cc2769da9c'),(5242,647,'title_featured_i','Tech EDGE'),(5243,647,'_title_featured_i','field_5d2cc41890f84'),(5244,647,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(5245,647,'_description_featured_i','field_5d2cc42890f85'),(5246,647,'seletc_type_link_featured_i','Link'),(5247,647,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(5248,647,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(5249,647,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(5250,647,'imagem_featured_i','61'),(5251,647,'_imagem_featured_i','field_5d2cc71559443'),(5252,647,'title_info_numbers','Digital by<br> the numbers'),(5253,647,'_title_info_numbers','field_5d2cc7e517635'),(5254,647,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(5255,647,'_description_info_number','field_5d2cc7f817636'),(5256,647,'app_downloads','2M'),(5257,647,'_app_downloads','field_5d2cc83e17637'),(5258,647,'active_users','900K'),(5259,647,'_active_users','field_5d2cc84617638'),(5260,647,'average_ios_rating','4.6'),(5261,647,'_average_ios_rating','field_5d2cc85217639'),(5262,647,'crew_checkins','14k'),(5263,647,'_crew_checkins','field_5d2cc8631763a'),(5264,647,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(5265,647,'_title_featured_ii','field_5d2cc9741153c'),(5266,647,'description_featured_ii',''),(5267,647,'_description_featured_ii','field_5d2cc97e1153d'),(5268,647,'imagem_featured_ii','77'),(5269,647,'_imagem_featured_ii','field_5d2cc98c1153e'),(5270,647,'seletc_type_link_featured_ii','Link'),(5271,647,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(5272,647,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(5273,647,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(5274,647,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(5275,647,'_title_featured_iii','field_5d2ccafff022a'),(5276,647,'description_featured_iii',''),(5277,647,'_description_featured_iii','field_5d2ccb0cf022b'),(5278,647,'imagem_featured_iii','85'),(5279,647,'_imagem_featured_iii','field_5d2ccb21f022c'),(5280,647,'seletc_type_link_featured_iii','Vídeo'),(5281,647,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(5282,647,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(5283,647,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(5284,647,'subtitle_hero','Our guests ask about…'),(5285,647,'_subtitle_hero','field_5d5711764ff01'),(5286,647,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(5287,647,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(5288,647,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(5289,647,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(5290,647,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(5291,647,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(5292,647,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(5293,647,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(5294,647,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(5295,647,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(5296,647,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(5297,647,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(5298,647,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(5299,647,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(5300,647,'hero_section_links_3_hero_section_link_title','Is the app free?'),(5301,647,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(5302,647,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(5303,647,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(5304,647,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(5305,647,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(5306,647,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(5307,647,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(5308,647,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(5309,647,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(5310,647,'hero_section_links','6'),(5311,647,'_hero_section_links','field_5d5711cf21851'),(5312,647,'featured_faq_title','Solving for the future of cruising.'),(5313,647,'_featured_faq_title','field_5d57145bc652e'),(5314,647,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(5315,647,'_featured_faq_description','field_5d57146bc652f'),(5316,647,'featured_faq_link','http://royaldigital.labcp.co/'),(5317,647,'_featured_faq_link','field_5d57147ec6530'),(5318,647,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(5319,647,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(5320,647,'popular_features_links_0_popular_features_link_title','Ships'),(5321,647,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(5322,647,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(5323,647,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(5324,647,'popular_features_links_1_popular_features_link_title','Check-in'),(5325,647,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(5326,647,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(5327,647,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(5328,647,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(5329,647,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(5330,647,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(5331,647,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(5332,647,'popular_features_links_3_popular_features_link_title','Guest Account'),(5333,647,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(5334,647,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(5335,647,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(5336,647,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(5337,647,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(5338,647,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(5339,647,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(5340,647,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(5341,647,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(5342,647,'popular_features_links','6'),(5343,647,'_popular_features_links','field_5d5714d1c6531'),(5344,648,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(5345,648,'_title_hero','field_5d2cbfcfc7b2b'),(5346,648,'title_quote','Tech that'),(5347,648,'_title_quote','field_5d2cc09b51dfa'),(5348,648,'title_strong_quote','ships'),(5349,648,'_title_strong_quote','field_5d2cc0db51dfc'),(5350,648,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(5351,648,'_description_quote','field_5d2cc0a851dfb'),(5352,648,'imagem_quote','45'),(5353,648,'_imagem_quote','field_5d2cc0ed51dfd'),(5354,648,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(5355,648,'_description_blockquote','field_5d2cc22c9da9a'),(5356,648,'author_blockquote','Richard Fain, in an interview with'),(5357,648,'_author_blockquote','field_5d2cc25a9da9b'),(5358,648,'company','TechRepublic'),(5359,648,'_company','field_5d2cc2769da9c'),(5360,648,'company_blockquote','TechRepublic'),(5361,648,'_company_blockquote','field_5d2cc2769da9c'),(5362,648,'title_featured_i','Tech EDGE'),(5363,648,'_title_featured_i','field_5d2cc41890f84'),(5364,648,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(5365,648,'_description_featured_i','field_5d2cc42890f85'),(5366,648,'seletc_type_link_featured_i','Link'),(5367,648,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(5368,648,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(5369,648,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(5370,648,'imagem_featured_i','61'),(5371,648,'_imagem_featured_i','field_5d2cc71559443'),(5372,648,'title_info_numbers','Digital by<br> the numbers'),(5373,648,'_title_info_numbers','field_5d2cc7e517635'),(5374,648,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(5375,648,'_description_info_number','field_5d2cc7f817636'),(5376,648,'app_downloads','2M'),(5377,648,'_app_downloads','field_5d2cc83e17637'),(5378,648,'active_users','900K'),(5379,648,'_active_users','field_5d2cc84617638'),(5380,648,'average_ios_rating','4.6'),(5381,648,'_average_ios_rating','field_5d2cc85217639'),(5382,648,'crew_checkins','14k'),(5383,648,'_crew_checkins','field_5d2cc8631763a'),(5384,648,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(5385,648,'_title_featured_ii','field_5d2cc9741153c'),(5386,648,'description_featured_ii',''),(5387,648,'_description_featured_ii','field_5d2cc97e1153d'),(5388,648,'imagem_featured_ii','77'),(5389,648,'_imagem_featured_ii','field_5d2cc98c1153e'),(5390,648,'seletc_type_link_featured_ii','Link'),(5391,648,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(5392,648,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(5393,648,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(5394,648,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(5395,648,'_title_featured_iii','field_5d2ccafff022a'),(5396,648,'description_featured_iii',''),(5397,648,'_description_featured_iii','field_5d2ccb0cf022b'),(5398,648,'imagem_featured_iii','85'),(5399,648,'_imagem_featured_iii','field_5d2ccb21f022c'),(5400,648,'seletc_type_link_featured_iii','Vídeo'),(5401,648,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(5402,648,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(5403,648,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(5404,648,'subtitle_hero','Our guests ask about…'),(5405,648,'_subtitle_hero','field_5d5711764ff01'),(5406,648,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(5407,648,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(5408,648,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(5409,648,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(5410,648,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(5411,648,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(5412,648,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(5413,648,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(5414,648,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(5415,648,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(5416,648,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(5417,648,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(5418,648,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(5419,648,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(5420,648,'hero_section_links_3_hero_section_link_title','Is the app free?'),(5421,648,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(5422,648,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(5423,648,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(5424,648,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(5425,648,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(5426,648,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(5427,648,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(5428,648,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(5429,648,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(5430,648,'hero_section_links','6'),(5431,648,'_hero_section_links','field_5d5711cf21851'),(5432,648,'featured_faq_title','Solving for the future of cruising.'),(5433,648,'_featured_faq_title','field_5d57145bc652e'),(5434,648,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(5435,648,'_featured_faq_description','field_5d57146bc652f'),(5436,648,'featured_faq_link','http://royaldigital.labcp.co/'),(5437,648,'_featured_faq_link','field_5d57147ec6530'),(5438,648,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(5439,648,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(5440,648,'popular_features_links_0_popular_features_link_title','Ships'),(5441,648,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(5442,648,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(5443,648,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(5444,648,'popular_features_links_1_popular_features_link_title','Check-in'),(5445,648,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(5446,648,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(5447,648,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(5448,648,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(5449,648,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(5450,648,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(5451,648,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(5452,648,'popular_features_links_3_popular_features_link_title','Guest Account'),(5453,648,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(5454,648,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(5455,648,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(5456,648,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(5457,648,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(5458,648,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(5459,648,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(5460,648,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(5461,648,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(5462,648,'popular_features_links','6'),(5463,648,'_popular_features_links','field_5d5714d1c6531'),(5464,161,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5465,161,'_link_appstore','field_5d2f2772dcd08'),(5466,161,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5467,161,'_link_playstore','field_5d2f277fdcd09'),(5468,161,'technology_1_title_technology','Daily Planner'),(5469,161,'_technology_1_title_technology','field_5d2f2748dcd06'),(5470,161,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5471,161,'_technology_1_description_technology','field_5d2f2754dcd07'),(5472,161,'technology_2_title_technology','Mobile Check-in'),(5473,161,'_technology_2_title_technology','field_5d2f2748dcd06'),(5474,161,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5475,161,'_technology_2_description_technology','field_5d2f2754dcd07'),(5476,161,'discover_ship_text_link','Browse Navigator of the Seas Sailings'),(5477,161,'_discover_ship_text_link','field_5d4d727f27026'),(5522,161,'technology_3_title_technology','Expedited Arrival'),(5523,161,'_technology_3_title_technology','field_5d2f2748dcd06'),(5524,161,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5525,161,'_technology_3_description_technology','field_5d2f2754dcd07'),(5526,160,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5527,160,'_link_appstore','field_5d2f2772dcd08'),(5528,160,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5529,160,'_link_playstore','field_5d2f277fdcd09'),(5530,160,'technology_1_title_technology','Daily Planner'),(5531,160,'_technology_1_title_technology','field_5d2f2748dcd06'),(5532,160,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5533,160,'_technology_1_description_technology','field_5d2f2754dcd07'),(5534,160,'technology_2_title_technology','Mobile Check-in'),(5535,160,'_technology_2_title_technology','field_5d2f2748dcd06'),(5536,160,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation faster.'),(5537,160,'_technology_2_description_technology','field_5d2f2754dcd07'),(5538,160,'technology_3_title_technology','Expedited Arrival'),(5539,160,'_technology_3_title_technology','field_5d2f2748dcd06'),(5540,160,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5541,160,'_technology_3_description_technology','field_5d2f2754dcd07'),(5542,160,'discover_ship_text_link','Browse Vision of the Seas sailings'),(5543,160,'_discover_ship_text_link','field_5d4d727f27026'),(5592,159,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5593,159,'_link_appstore','field_5d2f2772dcd08'),(5594,159,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5595,159,'_link_playstore','field_5d2f277fdcd09'),(5596,159,'technology_1_title_technology','Daily Planner'),(5597,159,'_technology_1_title_technology','field_5d2f2748dcd06'),(5598,159,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5599,159,'_technology_1_description_technology','field_5d2f2754dcd07'),(5600,159,'discover_ship_text_link','Browse Liberty of the Seas sailings'),(5601,159,'_discover_ship_text_link','field_5d4d727f27026'),(5606,161,'technology_4_title_technology','Reservations'),(5607,161,'_technology_4_title_technology','field_5d2f2748dcd06'),(5608,161,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5609,161,'_technology_4_description_technology','field_5d2f2754dcd07'),(5610,160,'technology_4_title_technology','Reservations'),(5611,160,'_technology_4_title_technology','field_5d2f2748dcd06'),(5612,160,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5613,160,'_technology_4_description_technology','field_5d2f2754dcd07'),(5614,158,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5615,158,'_link_appstore','field_5d2f2772dcd08'),(5616,158,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5617,158,'_link_playstore','field_5d2f277fdcd09'),(5618,158,'technology_1_title_technology','Daily Planner'),(5619,158,'_technology_1_title_technology','field_5d2f2748dcd06'),(5620,158,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5621,158,'_technology_1_description_technology','field_5d2f2754dcd07'),(5622,158,'technology_2_title_technology','Mobile Check-in'),(5623,158,'_technology_2_title_technology','field_5d2f2748dcd06'),(5624,158,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5625,158,'_technology_2_description_technology','field_5d2f2754dcd07'),(5626,158,'technology_3_title_technology','Expedited Arrival'),(5627,158,'_technology_3_title_technology','field_5d2f2748dcd06'),(5628,158,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5629,158,'_technology_3_description_technology','field_5d2f2754dcd07'),(5630,158,'technology_4_title_technology','Reservations'),(5631,158,'_technology_4_title_technology','field_5d2f2748dcd06'),(5632,158,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5633,158,'_technology_4_description_technology','field_5d2f2754dcd07'),(5634,158,'technology_5_title_technology','Onboard Account'),(5635,158,'_technology_5_title_technology','field_5d2f2748dcd06'),(5636,158,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(5637,158,'_technology_5_description_technology','field_5d2f2754dcd07'),(5638,158,'discover_ship_text_link','Browse Harmony of the Seas sailings'),(5639,158,'_discover_ship_text_link','field_5d4d727f27026'),(5640,157,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5641,157,'_link_appstore','field_5d2f2772dcd08'),(5642,157,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5643,157,'_link_playstore','field_5d2f277fdcd09'),(5644,157,'technology_1_title_technology','Daily Planner'),(5645,157,'_technology_1_title_technology','field_5d2f2748dcd06'),(5646,157,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5647,157,'_technology_1_description_technology','field_5d2f2754dcd07'),(5648,157,'discover_ship_text_link','Browse Majesty of the Seas Sailings'),(5649,157,'_discover_ship_text_link','field_5d4d727f27026'),(5650,156,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5651,156,'_link_appstore','field_5d2f2772dcd08'),(5652,156,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5653,156,'_link_playstore','field_5d2f277fdcd09'),(5654,156,'technology_1_title_technology','Daily Planner'),(5655,156,'_technology_1_title_technology','field_5d2f2748dcd06'),(5656,156,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5657,156,'_technology_1_description_technology','field_5d2f2754dcd07'),(5658,156,'discover_ship_text_link','Browse Brilliance of the Seas Sailings'),(5659,156,'_discover_ship_text_link','field_5d4d727f27026'),(5660,155,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5661,155,'_link_appstore','field_5d2f2772dcd08'),(5662,155,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5663,155,'_link_playstore','field_5d2f277fdcd09'),(5664,155,'technology_1_title_technology','Daily Planner'),(5665,155,'_technology_1_title_technology','field_5d2f2748dcd06'),(5666,155,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5667,155,'_technology_1_description_technology','field_5d2f2754dcd07'),(5668,155,'technology_2_title_technology','Mobile Check-in'),(5669,155,'_technology_2_title_technology','field_5d2f2748dcd06'),(5670,155,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5671,155,'_technology_2_description_technology','field_5d2f2754dcd07'),(5672,155,'technology_3_title_technology','Expedited Arrival'),(5673,155,'_technology_3_title_technology','field_5d2f2748dcd06'),(5674,155,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5675,155,'_technology_3_description_technology','field_5d2f2754dcd07'),(5676,155,'technology_4_title_technology','Reservations'),(5677,155,'_technology_4_title_technology','field_5d2f2748dcd06'),(5678,155,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5679,155,'_technology_4_description_technology','field_5d2f2754dcd07'),(5680,155,'discover_ship_text_link','Browse Adventure of the Seas Sailings'),(5681,155,'_discover_ship_text_link','field_5d4d727f27026'),(5774,154,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5775,154,'_link_appstore','field_5d2f2772dcd08'),(5776,154,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5777,154,'_link_playstore','field_5d2f277fdcd09'),(5778,154,'technology_1_title_technology','Daily Planner'),(5779,154,'_technology_1_title_technology','field_5d2f2748dcd06'),(5780,154,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5781,154,'_technology_1_description_technology','field_5d2f2754dcd07'),(5782,154,'technology_2_title_technology','Mobile Check-in'),(5783,154,'_technology_2_title_technology','field_5d2f2748dcd06'),(5784,154,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5785,154,'_technology_2_description_technology','field_5d2f2754dcd07'),(5786,154,'technology_3_title_technology','Expedited Arrival'),(5787,154,'_technology_3_title_technology','field_5d2f2748dcd06'),(5788,154,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5789,154,'_technology_3_description_technology','field_5d2f2754dcd07'),(5790,154,'technology_4_title_technology','Reservations'),(5791,154,'_technology_4_title_technology','field_5d2f2748dcd06'),(5792,154,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5793,154,'_technology_4_description_technology','field_5d2f2754dcd07'),(5794,154,'discover_ship_text_link','Browse Independence of the Seas Sailings'),(5795,154,'_discover_ship_text_link','field_5d4d727f27026'),(5796,152,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5797,152,'_link_appstore','field_5d2f2772dcd08'),(5798,152,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5799,152,'_link_playstore','field_5d2f277fdcd09'),(5800,152,'technology_1_title_technology','Daily Planner'),(5801,152,'_technology_1_title_technology','field_5d2f2748dcd06'),(5802,152,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5803,152,'_technology_1_description_technology','field_5d2f2754dcd07'),(5804,152,'technology_2_title_technology','Mobile Check-in'),(5805,152,'_technology_2_title_technology','field_5d2f2748dcd06'),(5806,152,'technology_2_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5807,152,'_technology_2_description_technology','field_5d2f2754dcd07'),(5808,152,'technology_3_title_technology','Expedited Arrival'),(5809,152,'_technology_3_title_technology','field_5d2f2748dcd06'),(5810,152,'technology_3_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5811,152,'_technology_3_description_technology','field_5d2f2754dcd07'),(5812,152,'technology_4_title_technology','Reservations'),(5813,152,'_technology_4_title_technology','field_5d2f2748dcd06'),(5814,152,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5815,152,'_technology_4_description_technology','field_5d2f2754dcd07'),(5816,152,'discover_ship_text_link','Browse Serenade of the Seas Sailings'),(5817,152,'_discover_ship_text_link','field_5d4d727f27026'),(5870,661,'_wp_attached_file','2019/07/id-ship-exterior-drone.jpg'),(5871,661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4429;s:6:\"height\";i:3189;s:4:\"file\";s:34:\"2019/07/id-ship-exterior-drone.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"id-ship-exterior-drone-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"id-ship-exterior-drone-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:17:\"Simon Brooke-Webb\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:129:\"IN, Independence of the Seas, Helicopter Shot, Aerial, 3/4 overhead starboard view, Southampton, SkyPad, FlowRider, Perfect Storm\";s:17:\"created_timestamp\";s:10:\"1526159766\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5872,151,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5873,151,'_link_appstore','field_5d2f2772dcd08'),(5874,151,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5875,151,'_link_playstore','field_5d2f277fdcd09'),(5876,151,'technology_1_title_technology','Mobile Check-in'),(5877,151,'_technology_1_title_technology','field_5d2f2748dcd06'),(5878,151,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(5879,151,'_technology_1_description_technology','field_5d2f2754dcd07'),(5880,151,'technology_2_title_technology','Expedited Arrival'),(5881,151,'_technology_2_title_technology','field_5d2f2748dcd06'),(5882,151,'technology_2_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(5883,151,'_technology_2_description_technology','field_5d2f2754dcd07'),(5884,151,'technology_3_title_technology','Daily Planner'),(5885,151,'_technology_3_title_technology','field_5d2f2748dcd06'),(5886,151,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5887,151,'_technology_3_description_technology','field_5d2f2754dcd07'),(5888,151,'technology_4_title_technology','Reservations'),(5889,151,'_technology_4_title_technology','field_5d2f2748dcd06'),(5890,151,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5891,151,'_technology_4_description_technology','field_5d2f2754dcd07'),(5892,151,'discover_ship_text_link','Browse Enchantment of the Seas Sailings'),(5893,151,'_discover_ship_text_link','field_5d4d727f27026'),(5894,663,'_wp_attached_file','2019/08/RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK.jpg'),(5895,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:7200;s:6:\"height\";i:4800;s:4:\"file\";s:62:\"2019/08/RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:63:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:62:\"RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:15:\"Jason Lisiewski\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:134:\"ID, Independence of the Seas, Sky Pad, trampoline, VR, jumping, fun, staff attendants, Rock Wall, climbing, ocean horizon in distance,\";s:17:\"created_timestamp\";s:10:\"1526294523\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5948,666,'_wp_attached_file','2019/07/EN-enchantment-casino-royale-gambling-bet-venue-opening.jpg'),(5949,666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2822;s:6:\"height\";i:2032;s:4:\"file\";s:67:\"2019/07/EN-enchantment-casino-royale-gambling-bet-venue-opening.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:68:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:67:\"EN-enchantment-casino-royale-gambling-bet-venue-opening-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:13:\"Richard Riley\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:59:\"EN-enchantment-casino-royale-gambling-bet-venue-opening.jpg\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5950,667,'_wp_attached_file','2019/07/EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea.jpg'),(5951,667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4000;s:6:\"height\";i:2880;s:4:\"file\";s:80:\"2019/07/EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:81:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:80:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Michel Verdure\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5952,668,'_wp_attached_file','2019/07/EN-enchantment-close-up-7-o-clock-at-sea-aerial.jpg'),(5953,668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2778;s:6:\"height\";i:2000;s:4:\"file\";s:59:\"2019/07/EN-enchantment-close-up-7-o-clock-at-sea-aerial.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:60:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:59:\"EN-enchantment-close-up-7-o-clock-at-sea-aerial-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5954,669,'_wp_attached_file','2019/07/EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea.jpg'),(5955,669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4000;s:6:\"height\";i:2880;s:4:\"file\";s:77:\"2019/07/EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:78:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:77:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Michel Verdure\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-se\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5956,670,'_wp_attached_file','2019/07/EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids.jpg'),(5957,670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3321;s:6:\"height\";i:2391;s:4:\"file\";s:70:\"2019/07/EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:71:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:70:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Michel Verdure\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:62:\"EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids.jpg\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5958,150,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(5959,150,'_link_appstore','field_5d2f2772dcd08'),(5960,150,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(5961,150,'_link_playstore','field_5d2f277fdcd09'),(5962,150,'technology_1_title_technology','Daily Planner'),(5963,150,'_technology_1_title_technology','field_5d2f2748dcd06'),(5964,150,'technology_1_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(5965,150,'_technology_1_description_technology','field_5d2f2754dcd07'),(5966,150,'technology_2_title_technology','Reservations'),(5967,150,'_technology_2_title_technology','field_5d2f2748dcd06'),(5968,150,'technology_2_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(5969,150,'_technology_2_description_technology','field_5d2f2754dcd07'),(5970,150,'discover_ship_text_link','Browse Oasis of the Seas Sailings'),(5971,150,'_discover_ship_text_link','field_5d4d727f27026'),(6024,149,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(6025,149,'_link_appstore','field_5d2f2772dcd08'),(6026,149,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(6027,149,'_link_playstore','field_5d2f277fdcd09'),(6028,149,'technology_1_title_technology','Mobile Check-in'),(6029,149,'_technology_1_title_technology','field_5d2f2748dcd06'),(6030,149,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(6031,149,'_technology_1_description_technology','field_5d2f2754dcd07'),(6032,149,'technology_2_title_technology','Expedited Arrival'),(6033,149,'_technology_2_title_technology','field_5d2f2748dcd06'),(6034,149,'technology_2_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(6035,149,'_technology_2_description_technology','field_5d2f2754dcd07'),(6036,149,'technology_3_title_technology','Daily Planner'),(6037,149,'_technology_3_title_technology','field_5d2f2748dcd06'),(6038,149,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6039,149,'_technology_3_description_technology','field_5d2f2754dcd07'),(6040,149,'technology_4_title_technology','Reservations'),(6041,149,'_technology_4_title_technology','field_5d2f2748dcd06'),(6042,149,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6043,149,'_technology_4_description_technology','field_5d2f2754dcd07'),(6044,149,'technology_5_title_technology','Onboard Account'),(6045,149,'_technology_5_title_technology','field_5d2f2748dcd06'),(6046,149,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6047,149,'_technology_5_description_technology','field_5d2f2754dcd07'),(6048,149,'technology_6_title_technology','MyTV'),(6049,149,'_technology_6_title_technology','field_5d2f2748dcd06'),(6050,149,'technology_6_description_technology','Watch movies, stream your favorite shows & learn about the ship from the comfort of your stateroom.'),(6051,149,'_technology_6_description_technology','field_5d2f2754dcd07'),(6052,149,'technology_7_title_technology','X-Ray Vision'),(6053,149,'_technology_7_title_technology','field_5d2f2748dcd06'),(6054,149,'technology_7_description_technology','Use the app to get an inside look at what’s going on in the bridge with X-Ray Vision.'),(6055,149,'_technology_7_description_technology','field_5d2f2754dcd07'),(6056,149,'discover_ship_text_link','Browse Symphony of the Seas Sailings'),(6057,149,'_discover_ship_text_link','field_5d4d727f27026'),(6058,148,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(6059,148,'_link_appstore','field_5d2f2772dcd08'),(6060,148,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_USq'),(6061,148,'_link_playstore','field_5d2f277fdcd09'),(6062,148,'technology_1_title_technology','Mobile Check-in'),(6063,148,'_technology_1_title_technology','field_5d2f2748dcd06'),(6064,148,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(6065,148,'_technology_1_description_technology','field_5d2f2754dcd07'),(6066,148,'technology_2_title_technology','Expedited Arrival'),(6067,148,'_technology_2_title_technology','field_5d2f2748dcd06'),(6068,148,'technology_2_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(6069,148,'_technology_2_description_technology','field_5d2f2754dcd07'),(6070,148,'technology_3_title_technology','Daily Planner'),(6071,148,'_technology_3_title_technology','field_5d2f2748dcd06'),(6072,148,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6073,148,'_technology_3_description_technology','field_5d2f2754dcd07'),(6074,148,'technology_4_title_technology','Reservations'),(6075,148,'_technology_4_title_technology','field_5d2f2748dcd06'),(6076,148,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6077,148,'_technology_4_description_technology','field_5d2f2754dcd07'),(6078,148,'technology_5_title_technology','Onboard Account'),(6079,148,'_technology_5_title_technology','field_5d2f2748dcd06'),(6080,148,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6081,148,'_technology_5_description_technology','field_5d2f2754dcd07'),(6082,148,'technology_6_title_technology','Guest-to-Guest Chat'),(6083,148,'_technology_6_title_technology','field_5d2f2748dcd06'),(6084,148,'technology_6_description_technology','Connect directly with fellow travelers in real time using the app. '),(6085,148,'_technology_6_description_technology','field_5d2f2754dcd07'),(6086,148,'technology_7_title_technology','X-Ray Vision'),(6087,148,'_technology_7_title_technology','field_5d2f2748dcd06'),(6088,148,'technology_7_description_technology','Use the app to get an inside look at what’s going on in the bridge.'),(6089,148,'_technology_7_description_technology','field_5d2f2754dcd07'),(6090,148,'discover_ship_text_link','Browse Allure of the Seas Sailings'),(6091,148,'_discover_ship_text_link','field_5d4d727f27026'),(6092,153,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(6093,153,'_link_appstore','field_5d2f2772dcd08'),(6094,153,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_USq'),(6095,153,'_link_playstore','field_5d2f277fdcd09'),(6096,153,'technology_1_title_technology','Mobile Check-in'),(6097,153,'_technology_1_title_technology','field_5d2f2748dcd06'),(6098,153,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(6099,153,'_technology_1_description_technology','field_5d2f2754dcd07'),(6100,153,'technology_2_title_technology','Expedited Arrival'),(6101,153,'_technology_2_title_technology','field_5d2f2748dcd06'),(6102,153,'technology_2_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(6103,153,'_technology_2_description_technology','field_5d2f2754dcd07'),(6104,153,'technology_3_title_technology','Daily Planner'),(6105,153,'_technology_3_title_technology','field_5d2f2748dcd06'),(6106,153,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6107,153,'_technology_3_description_technology','field_5d2f2754dcd07'),(6108,153,'technology_4_title_technology','Reservations'),(6109,153,'_technology_4_title_technology','field_5d2f2748dcd06'),(6110,153,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6111,153,'_technology_4_description_technology','field_5d2f2754dcd07'),(6112,153,'discover_ship_text_link','Browse Mariner of the Seas Sailings'),(6113,153,'_discover_ship_text_link','field_5d4d727f27026'),(6114,147,'link_appstore','https://apps.apple.com/us/app/azamara-club-cruises/id1445077748'),(6115,147,'_link_appstore','field_5d2f2772dcd08'),(6116,147,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.azamara&hl=en_US'),(6117,147,'_link_playstore','field_5d2f277fdcd09'),(6118,147,'technology_1_title_technology','Mobile Check-in'),(6119,147,'_technology_1_title_technology','field_5d2f2748dcd06'),(6120,147,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(6121,147,'_technology_1_description_technology','field_5d2f2754dcd07'),(6122,147,'technology_2_title_technology','Daily Planner'),(6123,147,'_technology_2_title_technology','field_5d2f2748dcd06'),(6124,147,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6125,147,'_technology_2_description_technology','field_5d2f2754dcd07'),(6126,147,'discover_ship_text_link','Browse Pursuit Sailings'),(6127,147,'_discover_ship_text_link','field_5d4d727f27026'),(6128,141,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6129,141,'_link_appstore','field_5d2f2772dcd08'),(6130,141,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(6131,141,'_link_playstore','field_5d2f277fdcd09'),(6132,141,'technology_2_title_technology','Daily Planner'),(6133,141,'_technology_2_title_technology','field_5d2f2748dcd06'),(6134,141,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6135,141,'_technology_2_description_technology','field_5d2f2754dcd07'),(6136,141,'technology_3_title_technology','Reservations'),(6137,141,'_technology_3_title_technology','field_5d2f2748dcd06'),(6138,141,'technology_3_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6139,141,'_technology_3_description_technology','field_5d2f2754dcd07'),(6140,141,'technology_4_title_technology','Onboard Account'),(6141,141,'_technology_4_title_technology','field_5d2f2748dcd06'),(6142,141,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6143,141,'_technology_4_description_technology','field_5d2f2754dcd07'),(6144,141,'discover_ship_text_link','Browse Reflection Sailings'),(6145,141,'_discover_ship_text_link','field_5d4d727f27026'),(6146,676,'_wp_attached_file','2019/07/QS-4-o-clock-exterior-aerial-day-brandless.jpg'),(6147,676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3333;s:6:\"height\";i:2400;s:4:\"file\";s:54:\"2019/07/QS-4-o-clock-exterior-aerial-day-brandless.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:55:\"QS-4-o-clock-exterior-aerial-day-brandless-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:54:\"QS-4-o-clock-exterior-aerial-day-brandless-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:13:\"Azamara Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6148,677,'_wp_attached_file','2019/07/PR-prime-c-restaurant-primec.jpg'),(6149,677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4667;s:6:\"height\";i:3360;s:4:\"file\";s:40:\"2019/07/PR-prime-c-restaurant-primec.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:41:\"PR-prime-c-restaurant-primec-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:40:\"PR-prime-c-restaurant-primec-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:21:\"©2018 Michel Verdure\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6150,139,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6151,139,'_link_appstore','field_5d2f2772dcd08'),(6152,139,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(6153,139,'_link_playstore','field_5d2f277fdcd09'),(6154,139,'technology_2_title_technology','Expedited Arrival'),(6155,139,'_technology_2_title_technology','field_5d2f2748dcd06'),(6156,139,'technology_2_description_technology','The fastest way, from car to the ship, using the functionality of the app.'),(6157,139,'_technology_2_description_technology','field_5d2f2754dcd07'),(6158,139,'technology_3_title_technology','Daily Planner'),(6159,139,'_technology_3_title_technology','field_5d2f2748dcd06'),(6160,139,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6161,139,'_technology_3_description_technology','field_5d2f2754dcd07'),(6162,139,'technology_4_title_technology','Reservations'),(6163,139,'_technology_4_title_technology','field_5d2f2748dcd06'),(6164,139,'technology_4_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6165,139,'_technology_4_description_technology','field_5d2f2754dcd07'),(6166,139,'technology_5_title_technology','Onboard Account'),(6167,139,'_technology_5_title_technology','field_5d2f2748dcd06'),(6168,139,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6169,139,'_technology_5_description_technology','field_5d2f2754dcd07'),(6170,139,'technology_6_title_technology','Guest-to-Guest Chat'),(6171,139,'_technology_6_title_technology','field_5d2f2748dcd06'),(6172,139,'technology_6_description_technology','Connect directly with fellow travelers in real time using the app. '),(6173,139,'_technology_6_description_technology','field_5d2f2754dcd07'),(6174,139,'technology_7_title_technology','Digital Key'),(6175,139,'_technology_7_title_technology','field_5d2f2748dcd06'),(6176,139,'technology_7_description_technology','Access your stateroom with the convenience of your mobile device.'),(6177,139,'_technology_7_description_technology','field_5d2f2754dcd07'),(6178,139,'technology_8_title_technology','Stateroom Controls'),(6179,139,'_technology_8_title_technology','field_5d2f2748dcd06'),(6180,139,'technology_8_description_technology','Personalize the settings for lights, temperature, blinds, and stateroom TV all with a tap.'),(6181,139,'_technology_8_description_technology','field_5d2f2754dcd07'),(6186,139,'discover_ship_text_link','Browse Edge Sailings'),(6187,139,'_discover_ship_text_link','field_5d4d727f27026'),(6188,140,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6189,140,'_link_appstore','field_5d2f2772dcd08'),(6190,140,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(6191,140,'_link_playstore','field_5d2f277fdcd09'),(6192,140,'technology_2_title_technology','Digital Key'),(6193,140,'_technology_2_title_technology','field_5d2f2748dcd06'),(6194,140,'technology_2_description_technology','Access your stateroom with the convenience of your mobile device.'),(6195,140,'_technology_2_description_technology','field_5d2f2754dcd07'),(6196,140,'technology_3_title_technology','Daily Planner'),(6197,140,'_technology_3_title_technology','field_5d2f2748dcd06'),(6198,140,'technology_3_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6199,140,'_technology_3_description_technology','field_5d2f2754dcd07'),(6200,140,'technology_4_title_technology','Onboard Account'),(6201,140,'_technology_4_title_technology','field_5d2f2748dcd06'),(6202,140,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6203,140,'_technology_4_description_technology','field_5d2f2754dcd07'),(6204,140,'technology_5_title_technology','Reservations'),(6205,140,'_technology_5_title_technology','field_5d2f2748dcd06'),(6206,140,'technology_5_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6207,140,'_technology_5_description_technology','field_5d2f2754dcd07'),(6208,140,'discover_ship_text_link','Browse Millennium Sailings'),(6209,140,'_discover_ship_text_link','field_5d4d727f27026'),(6210,113,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6211,113,'_link_appstore','field_5d2f2772dcd08'),(6212,113,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(6213,113,'_link_playstore','field_5d2f277fdcd09'),(6214,113,'technology_1_title_technology','Mobile Check-In'),(6215,113,'_technology_1_title_technology','field_5d2f2748dcd06'),(6216,113,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(6217,113,'_technology_1_description_technology','field_5d2f2754dcd07'),(6218,113,'technology_2_title_technology','Daily Planner'),(6219,113,'_technology_2_title_technology','field_5d2f2748dcd06'),(6220,113,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6221,113,'_technology_2_description_technology','field_5d2f2754dcd07'),(6222,113,'technology_3_title_technology','Reservations'),(6223,113,'_technology_3_title_technology','field_5d2f2748dcd06'),(6224,113,'technology_3_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6225,113,'_technology_3_description_technology','field_5d2f2754dcd07'),(6226,113,'technology_4_title_technology','Onboard Account'),(6227,113,'_technology_4_title_technology','field_5d2f2748dcd06'),(6228,113,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6229,113,'_technology_4_description_technology','field_5d2f2754dcd07'),(6230,113,'technology_5_title_technology','Guest-to-Guest Chat'),(6231,113,'_technology_5_title_technology','field_5d2f2748dcd06'),(6232,113,'technology_5_description_technology','Connect directly with fellow travelers in real time using the app. '),(6233,113,'_technology_5_description_technology','field_5d2f2754dcd07'),(6234,113,'technology_6_title_technology','Digital Key'),(6235,113,'_technology_6_title_technology','field_5d2f2748dcd06'),(6236,113,'technology_6_description_technology','Access your stateroom with the convenience of your mobile device.'),(6237,113,'_technology_6_description_technology','field_5d2f2754dcd07'),(6238,113,'discover_ship_text_link','Browse Equinox Sailings'),(6239,113,'_discover_ship_text_link','field_5d4d727f27026'),(6240,108,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6241,108,'_link_appstore','field_5d2f2772dcd08'),(6242,108,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(6243,108,'_link_playstore','field_5d2f277fdcd09'),(6244,108,'discover_ship_text_link','Browse Constellation Sailings'),(6245,108,'_discover_ship_text_link','field_5d4d727f27026'),(6246,108,'technology_2_title_technology','Daily Planner'),(6247,108,'_technology_2_title_technology','field_5d2f2748dcd06'),(6248,108,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(6249,108,'_technology_2_description_technology','field_5d2f2754dcd07'),(6250,108,'technology_3_title_technology','Reservations'),(6251,108,'_technology_3_title_technology','field_5d2f2748dcd06'),(6252,108,'technology_3_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(6253,108,'_technology_3_description_technology','field_5d2f2754dcd07'),(6254,108,'technology_4_title_technology','Onboard Account'),(6255,108,'_technology_4_title_technology','field_5d2f2748dcd06'),(6256,108,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6257,108,'_technology_4_description_technology','field_5d2f2754dcd07'),(6258,108,'technology_5_title_technology','Guest-to-guest Chat'),(6259,108,'_technology_5_title_technology','field_5d2f2748dcd06'),(6260,108,'technology_5_description_technology','Connect directly with fellow travelers in real time using the app. '),(6261,108,'_technology_5_description_technology','field_5d2f2754dcd07'),(6406,392,'_wp_old_date','2019-08-16'),(6407,395,'_wp_old_date','2019-08-16'),(6408,332,'_wp_old_date','2019-08-16'),(6409,391,'_wp_old_date','2019-08-16'),(6410,398,'_wp_old_date','2019-08-16'),(6411,394,'_wp_old_date','2019-08-15'),(6412,394,'description_post','Use your phone to unlock your room door!'),(6413,394,'_description_post','field_5d55bc8c63af0'),(6414,399,'_wp_old_date','2019-08-15'),(6415,399,'description_post','Edge All Access Tour'),(6416,399,'_description_post','field_5d55bc8c63af0'),(6417,335,'_wp_old_date','2019-08-15'),(6418,335,'description_post','Get on board faster with online check-in'),(6419,335,'_description_post','field_5d55bc8c63af0'),(6420,396,'_wp_old_date','2019-08-15'),(6421,396,'description_post','Take control from your mobile device'),(6422,396,'_description_post','field_5d55bc8c63af0'),(6423,334,'_wp_old_date','2019-08-15'),(6424,334,'description_post','How to start using the Royal app'),(6425,334,'_description_post','field_5d55bc8c63af0'),(6426,336,'_wp_old_date','2019-08-15'),(6427,336,'description_post','Expedite your process for getting onboard'),(6428,336,'_description_post','field_5d55bc8c63af0'),(6429,393,'_wp_old_date','2019-08-15'),(6430,393,'description_post','Track expenses in real time'),(6431,393,'_description_post','field_5d55bc8c63af0'),(6432,683,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(6433,683,'_title_hero','field_5d2cbfcfc7b2b'),(6434,683,'title_quote','Tech that'),(6435,683,'_title_quote','field_5d2cc09b51dfa'),(6436,683,'title_strong_quote','ships'),(6437,683,'_title_strong_quote','field_5d2cc0db51dfc'),(6438,683,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(6439,683,'_description_quote','field_5d2cc0a851dfb'),(6440,683,'imagem_quote','45'),(6441,683,'_imagem_quote','field_5d2cc0ed51dfd'),(6442,683,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(6443,683,'_description_blockquote','field_5d2cc22c9da9a'),(6444,683,'author_blockquote','Richard Fain, in an interview with'),(6445,683,'_author_blockquote','field_5d2cc25a9da9b'),(6446,683,'company','TechRepublic'),(6447,683,'_company','field_5d2cc2769da9c'),(6448,683,'company_blockquote','TechRepublic'),(6449,683,'_company_blockquote','field_5d2cc2769da9c'),(6450,683,'title_featured_i','Tech EDGE'),(6451,683,'_title_featured_i','field_5d2cc41890f84'),(6452,683,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(6453,683,'_description_featured_i','field_5d2cc42890f85'),(6454,683,'seletc_type_link_featured_i','Link'),(6455,683,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(6456,683,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(6457,683,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(6458,683,'imagem_featured_i','61'),(6459,683,'_imagem_featured_i','field_5d2cc71559443'),(6460,683,'title_info_numbers','Digital by<br> the numbers'),(6461,683,'_title_info_numbers','field_5d2cc7e517635'),(6462,683,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(6463,683,'_description_info_number','field_5d2cc7f817636'),(6464,683,'app_downloads','2.7M'),(6465,683,'_app_downloads','field_5d2cc83e17637'),(6466,683,'active_users','900K'),(6467,683,'_active_users','field_5d2cc84617638'),(6468,683,'average_ios_rating','4.6'),(6469,683,'_average_ios_rating','field_5d2cc85217639'),(6470,683,'crew_checkins','14k'),(6471,683,'_crew_checkins','field_5d2cc8631763a'),(6472,683,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(6473,683,'_title_featured_ii','field_5d2cc9741153c'),(6474,683,'description_featured_ii',''),(6475,683,'_description_featured_ii','field_5d2cc97e1153d'),(6476,683,'imagem_featured_ii','77'),(6477,683,'_imagem_featured_ii','field_5d2cc98c1153e'),(6478,683,'seletc_type_link_featured_ii','Link'),(6479,683,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(6480,683,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(6481,683,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(6482,683,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(6483,683,'_title_featured_iii','field_5d2ccafff022a'),(6484,683,'description_featured_iii',''),(6485,683,'_description_featured_iii','field_5d2ccb0cf022b'),(6486,683,'imagem_featured_iii','85'),(6487,683,'_imagem_featured_iii','field_5d2ccb21f022c'),(6488,683,'seletc_type_link_featured_iii','Vídeo'),(6489,683,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(6490,683,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(6491,683,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(6492,683,'subtitle_hero','Our guests ask about…'),(6493,683,'_subtitle_hero','field_5d5711764ff01'),(6494,683,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(6495,683,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(6496,683,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(6497,683,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(6498,683,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(6499,683,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(6500,683,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(6501,683,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(6502,683,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(6503,683,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(6504,683,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(6505,683,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(6506,683,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(6507,683,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(6508,683,'hero_section_links_3_hero_section_link_title','Is the app free?'),(6509,683,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(6510,683,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(6511,683,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(6512,683,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(6513,683,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(6514,683,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(6515,683,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(6516,683,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(6517,683,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(6518,683,'hero_section_links','6'),(6519,683,'_hero_section_links','field_5d5711cf21851'),(6520,683,'featured_faq_title','Solving for the future of cruising.'),(6521,683,'_featured_faq_title','field_5d57145bc652e'),(6522,683,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(6523,683,'_featured_faq_description','field_5d57146bc652f'),(6524,683,'featured_faq_link','http://royaldigital.labcp.co/'),(6525,683,'_featured_faq_link','field_5d57147ec6530'),(6526,683,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(6527,683,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(6528,683,'popular_features_links_0_popular_features_link_title','Ships'),(6529,683,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(6530,683,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(6531,683,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(6532,683,'popular_features_links_1_popular_features_link_title','Check-in'),(6533,683,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(6534,683,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(6535,683,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(6536,683,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(6537,683,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(6538,683,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(6539,683,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(6540,683,'popular_features_links_3_popular_features_link_title','Guest Account'),(6541,683,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(6542,683,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(6543,683,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(6544,683,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(6545,683,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(6546,683,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(6547,683,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(6548,683,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(6549,683,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(6550,683,'popular_features_links','6'),(6551,683,'_popular_features_links','field_5d5714d1c6531'),(6626,688,'_menu_item_type','post_type'),(6627,688,'_menu_item_menu_item_parent','0'),(6628,688,'_menu_item_object_id','271'),(6629,688,'_menu_item_object','page'),(6630,688,'_menu_item_target',''),(6631,688,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6632,688,'_menu_item_xfn',''),(6633,688,'_menu_item_url',''),(6716,696,'_edit_lock','1592233862:9'),(6717,696,'_edit_last','1'),(6718,699,'_wp_attached_file','2019/08/24361-shore-exproduct-image.jpg'),(6719,699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:266;s:4:\"file\";s:39:\"2019/08/24361-shore-exproduct-image.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"24361-shore-exproduct-image-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:40:\"24361-shore-exproduct-image-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:40:\"24361-shore-exproduct-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:40:\"24361-shore-exproduct-image-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:40:\"24361-shore-exproduct-image-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:39:\"24361-shore-exproduct-image-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6768,162,'technology_4_title_technology','Onboard Account'),(6769,162,'_technology_4_title_technology','field_5d2f2748dcd06'),(6770,162,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(6771,162,'_technology_4_description_technology','field_5d2f2754dcd07'),(6772,162,'technology_5_title_technology','Digital Key'),(6773,162,'_technology_5_title_technology','field_5d2f2748dcd06'),(6774,162,'technology_5_description_technology','Access your stateroom with the convenience of your mobile device.'),(6775,162,'_technology_5_description_technology','field_5d2f2754dcd07'),(6776,162,'technology_6_title_technology','Stateroom Controls'),(6777,162,'_technology_6_title_technology','field_5d2f2748dcd06'),(6778,162,'technology_6_description_technology','Personalize the settings for lights, temperature, blinds, and stateroom TV all with a tap.'),(6779,162,'_technology_6_description_technology','field_5d2f2754dcd07'),(6780,162,'technology_7_title_technology','MyTV'),(6781,162,'_technology_7_title_technology','field_5d2f2748dcd06'),(6782,162,'technology_7_description_technology','Watch movies, stream your favorite shows & learn about the ship from the comfort of your stateroom.'),(6783,162,'_technology_7_description_technology','field_5d2f2754dcd07'),(6784,162,'technology_8_title_technology','X-Ray Vision'),(6785,162,'_technology_8_title_technology','field_5d2f2748dcd06'),(6786,162,'technology_8_description_technology','Use the app to get an inside look at what’s going on in the bridge.'),(6787,162,'_technology_8_description_technology','field_5d2f2754dcd07'),(6788,162,'technology_9_title_technology','Expedition Two70'),(6789,162,'_technology_9_title_technology','field_5d2f2748dcd06'),(6790,162,'technology_9_description_technology','Journey to Two70 and test your adventuring skills in four fully immersive augmented reality games.'),(6791,162,'_technology_9_description_technology','field_5d2f2754dcd07'),(7302,714,'_edit_lock','1568058096:2'),(7303,714,'_edit_last','1'),(7304,715,'_wp_attached_file','2019/08/KD_AnthemOfTheSeas_Top_747x2048.png'),(7305,715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:43:\"2019/08/KD_AnthemOfTheSeas_Top_747x2048.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:44:\"KD_AnthemOfTheSeas_Top_747x2048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:43:\"KD_AnthemOfTheSeas_Top_747x2048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(7306,714,'select_brand','144'),(7307,714,'_select_brand','field_5d2cda81bbd5a'),(7308,714,'subtitle_ship','Anthem of the Seas'),(7309,714,'_subtitle_ship','field_5d2ce1bd8774a'),(7310,714,'description_ship','No matter what side of the Atlantic you’re on, you’re guaranteed to find unbelievable adventure onboard Anthem of the Seas.'),(7311,714,'_description_ship','field_5d2ce1f38774b'),(7312,714,'imagem_ship','112'),(7313,714,'_imagem_ship','field_5d2ce2428774c'),(7314,714,'logo_brand_ship','750'),(7315,714,'_logo_brand_ship','field_5d2f245a16988'),(7316,714,'title_brand_ship','Anthem of the Seas'),(7317,714,'_title_brand_ship','field_5d2f247516989'),(7318,714,'description_brand_ship','No matter what side of the Atlantic you’re on, you’re guaranteed to find unbelievable adventure onboard Anthem of the Seas.'),(7319,714,'_description_brand_ship','field_5d2f24851698a'),(7320,714,'photo_ship','785'),(7321,714,'_photo_ship','field_5d2f24901698b'),(7322,714,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(7323,714,'_link_appstore','field_5d2f2772dcd08'),(7324,714,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_USq'),(7325,714,'_link_playstore','field_5d2f277fdcd09'),(7326,714,'technology_0_title_technology','Mobile App'),(7327,714,'_technology_0_title_technology','field_5d2f2748dcd06'),(7328,714,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(7329,714,'_technology_0_description_technology','field_5d2f2754dcd07'),(7330,714,'technology_1_title_technology','Mobile Check-In'),(7331,714,'_technology_1_title_technology','field_5d2f2748dcd06'),(7332,714,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(7333,714,'_technology_1_description_technology','field_5d2f2754dcd07'),(7334,714,'technology_2_title_technology','Daily Planner'),(7335,714,'_technology_2_title_technology','field_5d2f2748dcd06'),(7336,714,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(7337,714,'_technology_2_description_technology','field_5d2f2754dcd07'),(7338,714,'technology_3_title_technology','Reservations'),(7339,714,'_technology_3_title_technology','field_5d2f2748dcd06'),(7340,714,'technology_3_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(7341,714,'_technology_3_description_technology','field_5d2f2754dcd07'),(7342,714,'technology','5'),(7343,714,'_technology','field_5d2f2738dcd05'),(7344,714,'discover_ship_title','Discover Royal Caribbean Cruising'),(7345,714,'_discover_ship_title','field_5d2f2b854d072'),(7346,714,'discover_ship_text_link','Browse Anthem of the Seas Sailings'),(7347,714,'_discover_ship_text_link','field_5d4d727f27026'),(7348,714,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/anthem-of-the-seas'),(7349,714,'_discover_ship_link','field_5d2f2ba44d073'),(7350,714,'discover_ship_photo','604'),(7351,714,'_discover_ship_photo','field_5d2f2bbc4d075'),(7352,714,'gallery',''),(7353,714,'_gallery','field_5d2f2c89081ed'),(7697,728,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(7698,728,'_title_hero','field_5d2cbfcfc7b2b'),(7699,728,'title_quote','Tech that'),(7700,728,'_title_quote','field_5d2cc09b51dfa'),(7701,728,'title_strong_quote','ships'),(7702,728,'_title_strong_quote','field_5d2cc0db51dfc'),(7703,728,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(7704,728,'_description_quote','field_5d2cc0a851dfb'),(7705,728,'imagem_quote','45'),(7706,728,'_imagem_quote','field_5d2cc0ed51dfd'),(7707,728,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(7708,728,'_description_blockquote','field_5d2cc22c9da9a'),(7709,728,'author_blockquote','Richard Fain, in an interview with'),(7710,728,'_author_blockquote','field_5d2cc25a9da9b'),(7711,728,'company','TechRepublic'),(7712,728,'_company','field_5d2cc2769da9c'),(7713,728,'company_blockquote','TechRepublic'),(7714,728,'_company_blockquote','field_5d2cc2769da9c'),(7715,728,'title_featured_i','EDGE'),(7716,728,'_title_featured_i','field_5d2cc41890f84'),(7717,728,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(7718,728,'_description_featured_i','field_5d2cc42890f85'),(7719,728,'seletc_type_link_featured_i','Link'),(7720,728,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(7721,728,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(7722,728,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(7723,728,'imagem_featured_i','61'),(7724,728,'_imagem_featured_i','field_5d2cc71559443'),(7725,728,'title_info_numbers','Digital by<br> the numbers'),(7726,728,'_title_info_numbers','field_5d2cc7e517635'),(7727,728,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(7728,728,'_description_info_number','field_5d2cc7f817636'),(7729,728,'app_downloads','2.7M'),(7730,728,'_app_downloads','field_5d2cc83e17637'),(7731,728,'active_users','900K'),(7732,728,'_active_users','field_5d2cc84617638'),(7733,728,'average_ios_rating','4.6'),(7734,728,'_average_ios_rating','field_5d2cc85217639'),(7735,728,'crew_checkins','14k'),(7736,728,'_crew_checkins','field_5d2cc8631763a'),(7737,728,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(7738,728,'_title_featured_ii','field_5d2cc9741153c'),(7739,728,'description_featured_ii',''),(7740,728,'_description_featured_ii','field_5d2cc97e1153d'),(7741,728,'imagem_featured_ii','77'),(7742,728,'_imagem_featured_ii','field_5d2cc98c1153e'),(7743,728,'seletc_type_link_featured_ii','Link'),(7744,728,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(7745,728,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(7746,728,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(7747,728,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(7748,728,'_title_featured_iii','field_5d2ccafff022a'),(7749,728,'description_featured_iii',''),(7750,728,'_description_featured_iii','field_5d2ccb0cf022b'),(7751,728,'imagem_featured_iii','85'),(7752,728,'_imagem_featured_iii','field_5d2ccb21f022c'),(7753,728,'seletc_type_link_featured_iii','Vídeo'),(7754,728,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(7755,728,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(7756,728,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(7757,728,'subtitle_hero','Our guests ask about…'),(7758,728,'_subtitle_hero','field_5d5711764ff01'),(7759,728,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(7760,728,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(7761,728,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(7762,728,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(7763,728,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(7764,728,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(7765,728,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(7766,728,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(7767,728,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(7768,728,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(7769,728,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(7770,728,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(7771,728,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(7772,728,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(7773,728,'hero_section_links_3_hero_section_link_title','Is the app free?'),(7774,728,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(7775,728,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(7776,728,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(7777,728,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(7778,728,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(7779,728,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(7780,728,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(7781,728,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(7782,728,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(7783,728,'hero_section_links','6'),(7784,728,'_hero_section_links','field_5d5711cf21851'),(7785,728,'featured_faq_title','Solving for the future of cruising.'),(7786,728,'_featured_faq_title','field_5d57145bc652e'),(7787,728,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(7788,728,'_featured_faq_description','field_5d57146bc652f'),(7789,728,'featured_faq_link','http://royaldigital.labcp.co/'),(7790,728,'_featured_faq_link','field_5d57147ec6530'),(7791,728,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(7792,728,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(7793,728,'popular_features_links_0_popular_features_link_title','Ships'),(7794,728,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(7795,728,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(7796,728,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(7797,728,'popular_features_links_1_popular_features_link_title','Check-in'),(7798,728,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(7799,728,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(7800,728,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(7801,728,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(7802,728,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(7803,728,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(7804,728,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(7805,728,'popular_features_links_3_popular_features_link_title','Guest Account'),(7806,728,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(7807,728,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(7808,728,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(7809,728,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(7810,728,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(7811,728,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(7812,728,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(7813,728,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(7814,728,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(7815,728,'popular_features_links','6'),(7816,728,'_popular_features_links','field_5d5714d1c6531'),(7817,729,'title_hero','<span>Solving for the digital</span> <span>future of cruising</span>'),(7818,729,'_title_hero','field_5d2cbfcfc7b2b'),(7819,729,'title_quote','Tech that'),(7820,729,'_title_quote','field_5d2cc09b51dfa'),(7821,729,'title_strong_quote','ships'),(7822,729,'_title_strong_quote','field_5d2cc0db51dfc'),(7823,729,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(7824,729,'_description_quote','field_5d2cc0a851dfb'),(7825,729,'imagem_quote','45'),(7826,729,'_imagem_quote','field_5d2cc0ed51dfd'),(7827,729,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(7828,729,'_description_blockquote','field_5d2cc22c9da9a'),(7829,729,'author_blockquote','Richard Fain, in an interview with'),(7830,729,'_author_blockquote','field_5d2cc25a9da9b'),(7831,729,'company','TechRepublic'),(7832,729,'_company','field_5d2cc2769da9c'),(7833,729,'company_blockquote','TechRepublic'),(7834,729,'_company_blockquote','field_5d2cc2769da9c'),(7835,729,'title_featured_i','Tech Edge'),(7836,729,'_title_featured_i','field_5d2cc41890f84'),(7837,729,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(7838,729,'_description_featured_i','field_5d2cc42890f85'),(7839,729,'seletc_type_link_featured_i','Link'),(7840,729,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(7841,729,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(7842,729,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(7843,729,'imagem_featured_i','61'),(7844,729,'_imagem_featured_i','field_5d2cc71559443'),(7845,729,'title_info_numbers','Digital by<br> the numbers'),(7846,729,'_title_info_numbers','field_5d2cc7e517635'),(7847,729,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(7848,729,'_description_info_number','field_5d2cc7f817636'),(7849,729,'app_downloads','2.7M'),(7850,729,'_app_downloads','field_5d2cc83e17637'),(7851,729,'active_users','900K'),(7852,729,'_active_users','field_5d2cc84617638'),(7853,729,'average_ios_rating','4.6'),(7854,729,'_average_ios_rating','field_5d2cc85217639'),(7855,729,'crew_checkins','14k'),(7856,729,'_crew_checkins','field_5d2cc8631763a'),(7857,729,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(7858,729,'_title_featured_ii','field_5d2cc9741153c'),(7859,729,'description_featured_ii',''),(7860,729,'_description_featured_ii','field_5d2cc97e1153d'),(7861,729,'imagem_featured_ii','77'),(7862,729,'_imagem_featured_ii','field_5d2cc98c1153e'),(7863,729,'seletc_type_link_featured_ii','Link'),(7864,729,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(7865,729,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(7866,729,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(7867,729,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(7868,729,'_title_featured_iii','field_5d2ccafff022a'),(7869,729,'description_featured_iii',''),(7870,729,'_description_featured_iii','field_5d2ccb0cf022b'),(7871,729,'imagem_featured_iii','85'),(7872,729,'_imagem_featured_iii','field_5d2ccb21f022c'),(7873,729,'seletc_type_link_featured_iii','Vídeo'),(7874,729,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(7875,729,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(7876,729,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(7877,729,'subtitle_hero','Our guests ask about…'),(7878,729,'_subtitle_hero','field_5d5711764ff01'),(7879,729,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(7880,729,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(7881,729,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(7882,729,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(7883,729,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(7884,729,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(7885,729,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(7886,729,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(7887,729,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(7888,729,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(7889,729,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(7890,729,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(7891,729,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(7892,729,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(7893,729,'hero_section_links_3_hero_section_link_title','Is the app free?'),(7894,729,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(7895,729,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(7896,729,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(7897,729,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(7898,729,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(7899,729,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(7900,729,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(7901,729,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(7902,729,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(7903,729,'hero_section_links','6'),(7904,729,'_hero_section_links','field_5d5711cf21851'),(7905,729,'featured_faq_title','Solving for the future of cruising.'),(7906,729,'_featured_faq_title','field_5d57145bc652e'),(7907,729,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(7908,729,'_featured_faq_description','field_5d57146bc652f'),(7909,729,'featured_faq_link','http://royaldigital.labcp.co/'),(7910,729,'_featured_faq_link','field_5d57147ec6530'),(7911,729,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(7912,729,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(7913,729,'popular_features_links_0_popular_features_link_title','Ships'),(7914,729,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(7915,729,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(7916,729,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(7917,729,'popular_features_links_1_popular_features_link_title','Check-in'),(7918,729,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(7919,729,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(7920,729,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(7921,729,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(7922,729,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(7923,729,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(7924,729,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(7925,729,'popular_features_links_3_popular_features_link_title','Guest Account'),(7926,729,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(7927,729,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(7928,729,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(7929,729,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(7930,729,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(7931,729,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(7932,729,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(7933,729,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(7934,729,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(7935,729,'popular_features_links','6'),(7936,729,'_popular_features_links','field_5d5714d1c6531'),(8035,739,'_wp_attached_file','2019/08/NicePng_celebrity-png_870439.png'),(8036,739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:407;s:6:\"height\";i:93;s:4:\"file\";s:40:\"2019/08/NicePng_celebrity-png_870439.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"NicePng_celebrity-png_870439-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"NicePng_celebrity-png_870439-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:41:\"NicePng_celebrity-png_870439-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:41:\"NicePng_celebrity-png_870439-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:41:\"NicePng_celebrity-png_870439-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:41:\"NicePng_celebrity-png_870439-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:40:\"NicePng_celebrity-png_870439-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9325,779,'_wp_attached_file','2019/07/r_royal.png'),(9326,779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2019/07/r_royal.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"r_royal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"r_royal-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:20:\"r_royal-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:19:\"r_royal-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:20:\"r_royal-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:19:\"r_royal-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:19:\"r_royal-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:20:\"r_royal-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:19:\"r_royal-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:19:\"r_royal-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:20:\"r_royal-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:19:\"r_royal-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9327,780,'_wp_attached_file','2019/07/r_azamara.png'),(9328,780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2019/07/r_azamara.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"r_azamara-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"r_azamara-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:22:\"r_azamara-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:21:\"r_azamara-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:22:\"r_azamara-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:21:\"r_azamara-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:21:\"r_azamara-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:22:\"r_azamara-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:21:\"r_azamara-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:21:\"r_azamara-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:22:\"r_azamara-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:21:\"r_azamara-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9329,781,'_wp_attached_file','2019/07/r_celebrity.png'),(9330,781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:150;s:4:\"file\";s:23:\"2019/07/r_celebrity.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"r_celebrity-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"r_celebrity-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:24:\"r_celebrity-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:23:\"r_celebrity-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:24:\"r_celebrity-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:23:\"r_celebrity-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:23:\"r_celebrity-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:24:\"r_celebrity-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:23:\"r_celebrity-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:23:\"r_celebrity-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:24:\"r_celebrity-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:23:\"r_celebrity-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9368,785,'_wp_attached_file','2019/08/KD_Edge_top_747x2048-1.png'),(9369,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:844;s:4:\"file\";s:34:\"2019/08/KD_Edge_top_747x2048-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"KD_Edge_top_747x2048-1-86x300.png\";s:5:\"width\";i:86;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"KD_Edge_top_747x2048-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"KD_Edge_top_747x2048-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"KD_Edge_top_747x2048-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"KD_Edge_top_747x2048-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"KD_Edge_top_747x2048-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"KD_Edge_top_747x2048-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9432,787,'_wp_attached_file','2019/07/celebrity.svg'),(9433,788,'_wp_attached_file','2019/07/royal.svg'),(9434,789,'_wp_attached_file','2019/07/azamara.svg'),(9435,790,'_wp_attached_file','2019/07/group-2.svg'),(9436,791,'_wp_attached_file','2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003.jpg'),(9437,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:74:\"2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9438,792,'_wp_attached_file','2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002.jpg'),(9439,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:74:\"2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9440,793,'_wp_attached_file','2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001.jpg'),(9441,793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:74:\"2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9442,794,'_wp_attached_file','2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg'),(9443,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:74:\"2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:75:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:74:\"CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9444,795,'_edit_lock','1579101319:2'),(9447,795,'_thumbnail_id','794'),(9448,795,'_edit_last','2'),(9451,795,'author_news','2'),(9452,795,'_author_news','field_5d3083fbbea51'),(9453,795,'select_brand','144'),(9454,795,'_select_brand','field_5d3084d736561'),(9455,795,'featured_post','0'),(9456,795,'_featured_post','field_5d30852c7c4e7'),(9457,795,'legend_featured_image',''),(9458,795,'_legend_featured_image','field_5d39e9d4ef8f8'),(9459,795,'select_posts_related',''),(9460,795,'_select_posts_related','field_5d3afdcff5db7'),(9461,797,'author_news','2'),(9462,797,'_author_news','field_5d3083fbbea51'),(9463,797,'select_brand','144'),(9464,797,'_select_brand','field_5d3084d736561'),(9465,797,'featured_post','0'),(9466,797,'_featured_post','field_5d30852c7c4e7'),(9467,797,'legend_featured_image',''),(9468,797,'_legend_featured_image','field_5d39e9d4ef8f8'),(9469,797,'select_posts_related',''),(9470,797,'_select_posts_related','field_5d3afdcff5db7'),(9475,798,'author_news','2'),(9476,798,'_author_news','field_5d3083fbbea51'),(9477,798,'select_brand','144'),(9478,798,'_select_brand','field_5d3084d736561'),(9479,798,'featured_post','0'),(9480,798,'_featured_post','field_5d30852c7c4e7'),(9481,798,'legend_featured_image',''),(9482,798,'_legend_featured_image','field_5d39e9d4ef8f8'),(9483,798,'select_posts_related',''),(9484,798,'_select_posts_related','field_5d3afdcff5db7'),(9489,800,'author_news','2'),(9490,800,'_author_news','field_5d3083fbbea51'),(9491,800,'select_brand','144'),(9492,800,'_select_brand','field_5d3084d736561'),(9493,800,'featured_post','0'),(9494,800,'_featured_post','field_5d30852c7c4e7'),(9495,800,'legend_featured_image',''),(9496,800,'_legend_featured_image','field_5d39e9d4ef8f8'),(9497,800,'select_posts_related',''),(9498,800,'_select_posts_related','field_5d3afdcff5db7'),(9499,801,'title_hero','Solving for the<br> digital future of<br> cruising'),(9500,801,'_title_hero','field_5d2cbfcfc7b2b'),(9501,801,'title_quote','Tech that'),(9502,801,'_title_quote','field_5d2cc09b51dfa'),(9503,801,'title_strong_quote','ships'),(9504,801,'_title_strong_quote','field_5d2cc0db51dfc'),(9505,801,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(9506,801,'_description_quote','field_5d2cc0a851dfb'),(9507,801,'imagem_quote','45'),(9508,801,'_imagem_quote','field_5d2cc0ed51dfd'),(9509,801,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(9510,801,'_description_blockquote','field_5d2cc22c9da9a'),(9511,801,'author_blockquote','Richard Fain, in an interview with'),(9512,801,'_author_blockquote','field_5d2cc25a9da9b'),(9513,801,'company','TechRepublic'),(9514,801,'_company','field_5d2cc2769da9c'),(9515,801,'company_blockquote','TechRepublic'),(9516,801,'_company_blockquote','field_5d2cc2769da9c'),(9517,801,'title_featured_i','Tech Edge'),(9518,801,'_title_featured_i','field_5d2cc41890f84'),(9519,801,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(9520,801,'_description_featured_i','field_5d2cc42890f85'),(9521,801,'seletc_type_link_featured_i','Link'),(9522,801,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(9523,801,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(9524,801,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(9525,801,'imagem_featured_i','61'),(9526,801,'_imagem_featured_i','field_5d2cc71559443'),(9527,801,'title_info_numbers','Digital by<br> the numbers'),(9528,801,'_title_info_numbers','field_5d2cc7e517635'),(9529,801,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(9530,801,'_description_info_number','field_5d2cc7f817636'),(9531,801,'app_downloads','2.7M'),(9532,801,'_app_downloads','field_5d2cc83e17637'),(9533,801,'active_users','900K'),(9534,801,'_active_users','field_5d2cc84617638'),(9535,801,'average_ios_rating','4.6'),(9536,801,'_average_ios_rating','field_5d2cc85217639'),(9537,801,'crew_checkins','14k'),(9538,801,'_crew_checkins','field_5d2cc8631763a'),(9539,801,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(9540,801,'_title_featured_ii','field_5d2cc9741153c'),(9541,801,'description_featured_ii',''),(9542,801,'_description_featured_ii','field_5d2cc97e1153d'),(9543,801,'imagem_featured_ii','77'),(9544,801,'_imagem_featured_ii','field_5d2cc98c1153e'),(9545,801,'seletc_type_link_featured_ii','Link'),(9546,801,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(9547,801,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(9548,801,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(9549,801,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(9550,801,'_title_featured_iii','field_5d2ccafff022a'),(9551,801,'description_featured_iii',''),(9552,801,'_description_featured_iii','field_5d2ccb0cf022b'),(9553,801,'imagem_featured_iii','85'),(9554,801,'_imagem_featured_iii','field_5d2ccb21f022c'),(9555,801,'seletc_type_link_featured_iii','Vídeo'),(9556,801,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(9557,801,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(9558,801,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(9559,801,'subtitle_hero','Our guests ask about…'),(9560,801,'_subtitle_hero','field_5d5711764ff01'),(9561,801,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(9562,801,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(9563,801,'hero_section_links_0_hero_section_link_title','What can I do with the mobile app?'),(9564,801,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(9565,801,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(9566,801,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(9567,801,'hero_section_links_1_hero_section_link_title','Is the app available on my ship?'),(9568,801,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(9569,801,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(9570,801,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(9571,801,'hero_section_links_2_hero_section_link_title','How do i qualify for expedited arrival?'),(9572,801,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(9573,801,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(9574,801,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(9575,801,'hero_section_links_3_hero_section_link_title','Is the app free?'),(9576,801,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(9577,801,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(9578,801,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(9579,801,'hero_section_links_4_hero_section_link_title','Is chat available on my ship?'),(9580,801,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(9581,801,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(9582,801,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(9583,801,'hero_section_links_5_hero_section_link_title','Can I see my reservations through the app?'),(9584,801,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(9585,801,'hero_section_links','6'),(9586,801,'_hero_section_links','field_5d5711cf21851'),(9587,801,'featured_faq_title','Solving for the future of cruising.'),(9588,801,'_featured_faq_title','field_5d57145bc652e'),(9589,801,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(9590,801,'_featured_faq_description','field_5d57146bc652f'),(9591,801,'featured_faq_link','http://royaldigital.labcp.co/'),(9592,801,'_featured_faq_link','field_5d57147ec6530'),(9593,801,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(9594,801,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(9595,801,'popular_features_links_0_popular_features_link_title','Ships'),(9596,801,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(9597,801,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(9598,801,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(9599,801,'popular_features_links_1_popular_features_link_title','Check-in'),(9600,801,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(9601,801,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(9602,801,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(9603,801,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(9604,801,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(9605,801,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(9606,801,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(9607,801,'popular_features_links_3_popular_features_link_title','Guest Account'),(9608,801,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(9609,801,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(9610,801,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(9611,801,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(9612,801,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(9613,801,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(9614,801,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(9615,801,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(9616,801,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(9617,801,'popular_features_links','6'),(9618,801,'_popular_features_links','field_5d5714d1c6531'),(9620,804,'_edit_lock','1593105963:9'),(9621,804,'_edit_last','2'),(9622,804,'author_news','2'),(9623,804,'_author_news','field_5d3083fbbea51'),(9624,804,'select_brand','144'),(9625,804,'_select_brand','field_5d3084d736561'),(9626,804,'featured_post','0'),(9627,804,'_featured_post','field_5d30852c7c4e7'),(9628,804,'legend_featured_image',''),(9629,804,'_legend_featured_image','field_5d39e9d4ef8f8'),(9630,804,'select_posts_related',''),(9631,804,'_select_posts_related','field_5d3afdcff5db7'),(9632,805,'author_news',''),(9633,805,'_author_news','field_5d3083fbbea51'),(9634,805,'select_brand',''),(9635,805,'_select_brand','field_5d3084d736561'),(9636,805,'featured_post','0'),(9637,805,'_featured_post','field_5d30852c7c4e7'),(9638,805,'legend_featured_image',''),(9639,805,'_legend_featured_image','field_5d39e9d4ef8f8'),(9640,805,'select_posts_related',''),(9641,805,'_select_posts_related','field_5d3afdcff5db7'),(9643,808,'_wp_attached_file','2019/08/Spectrum_Daytime_Delivery-v04_1095x4480.png'),(9644,808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1095;s:6:\"height\";i:4480;s:4:\"file\";s:51:\"2019/08/Spectrum_Daytime_Delivery-v04_1095x4480.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Spectrum_Daytime_Delivery-v04_1095x4480-73x300.png\";s:5:\"width\";i:73;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-768x3142.png\";s:5:\"width\";i:768;s:6:\"height\";i:3142;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-250x1024.png\";s:5:\"width\";i:250;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:52:\"Spectrum_Daytime_Delivery-v04_1095x4480-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:51:\"Spectrum_Daytime_Delivery-v04_1095x4480-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(9835,811,'title_hero','Solving for the<br> digital future of<br> cruising'),(9836,811,'_title_hero','field_5d2cbfcfc7b2b'),(9837,811,'title_quote','Tech that'),(9838,811,'_title_quote','field_5d2cc09b51dfa'),(9839,811,'title_strong_quote','ships'),(9840,811,'_title_strong_quote','field_5d2cc0db51dfc'),(9841,811,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(9842,811,'_description_quote','field_5d2cc0a851dfb'),(9843,811,'imagem_quote','45'),(9844,811,'_imagem_quote','field_5d2cc0ed51dfd'),(9845,811,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(9846,811,'_description_blockquote','field_5d2cc22c9da9a'),(9847,811,'author_blockquote','Richard Fain, in an interview with'),(9848,811,'_author_blockquote','field_5d2cc25a9da9b'),(9849,811,'company','TechRepublic'),(9850,811,'_company','field_5d2cc2769da9c'),(9851,811,'company_blockquote','TechRepublic'),(9852,811,'_company_blockquote','field_5d2cc2769da9c'),(9853,811,'title_featured_i','Tech Edge'),(9854,811,'_title_featured_i','field_5d2cc41890f84'),(9855,811,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(9856,811,'_description_featured_i','field_5d2cc42890f85'),(9857,811,'seletc_type_link_featured_i','Link'),(9858,811,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(9859,811,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(9860,811,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(9861,811,'imagem_featured_i','61'),(9862,811,'_imagem_featured_i','field_5d2cc71559443'),(9863,811,'title_info_numbers','Digital by<br> the numbers'),(9864,811,'_title_info_numbers','field_5d2cc7e517635'),(9865,811,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(9866,811,'_description_info_number','field_5d2cc7f817636'),(9867,811,'app_downloads','2.7M'),(9868,811,'_app_downloads','field_5d2cc83e17637'),(9869,811,'active_users','900K'),(9870,811,'_active_users','field_5d2cc84617638'),(9871,811,'average_ios_rating','4.6'),(9872,811,'_average_ios_rating','field_5d2cc85217639'),(9873,811,'crew_checkins','14k'),(9874,811,'_crew_checkins','field_5d2cc8631763a'),(9875,811,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(9876,811,'_title_featured_ii','field_5d2cc9741153c'),(9877,811,'description_featured_ii',''),(9878,811,'_description_featured_ii','field_5d2cc97e1153d'),(9879,811,'imagem_featured_ii','77'),(9880,811,'_imagem_featured_ii','field_5d2cc98c1153e'),(9881,811,'seletc_type_link_featured_ii','Link'),(9882,811,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(9883,811,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(9884,811,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(9885,811,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(9886,811,'_title_featured_iii','field_5d2ccafff022a'),(9887,811,'description_featured_iii',''),(9888,811,'_description_featured_iii','field_5d2ccb0cf022b'),(9889,811,'imagem_featured_iii','85'),(9890,811,'_imagem_featured_iii','field_5d2ccb21f022c'),(9891,811,'seletc_type_link_featured_iii','Vídeo'),(9892,811,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(9893,811,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(9894,811,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(9895,811,'subtitle_hero','Our guests often ask…'),(9896,811,'_subtitle_hero','field_5d5711764ff01'),(9897,811,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(9898,811,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(9899,811,'hero_section_links_0_hero_section_link_title','Do I need to pay for an Internet package to use the app?'),(9900,811,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(9901,811,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(9902,811,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(9903,811,'hero_section_links_1_hero_section_link_title','Will the app be available on the ship of my upcoming vacation?'),(9904,811,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(9905,811,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(9906,811,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(9907,811,'hero_section_links_2_hero_section_link_title','Do I need to download the app before I board my ship?'),(9908,811,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(9909,811,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(9910,811,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(9911,811,'hero_section_links_3_hero_section_link_title','Which ships are getting the app next?'),(9912,811,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(9913,811,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(9914,811,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(9915,811,'hero_section_links_4_hero_section_link_title',''),(9916,811,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(9917,811,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(9918,811,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(9919,811,'hero_section_links_5_hero_section_link_title',''),(9920,811,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(9921,811,'hero_section_links','6'),(9922,811,'_hero_section_links','field_5d5711cf21851'),(9923,811,'featured_faq_title','Solving for the future of cruising.'),(9924,811,'_featured_faq_title','field_5d57145bc652e'),(9925,811,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(9926,811,'_featured_faq_description','field_5d57146bc652f'),(9927,811,'featured_faq_link','http://royaldigital.labcp.co/'),(9928,811,'_featured_faq_link','field_5d57147ec6530'),(9929,811,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(9930,811,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(9931,811,'popular_features_links_0_popular_features_link_title','Ships'),(9932,811,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(9933,811,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(9934,811,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(9935,811,'popular_features_links_1_popular_features_link_title','Check-in'),(9936,811,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(9937,811,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(9938,811,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(9939,811,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(9940,811,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(9941,811,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(9942,811,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(9943,811,'popular_features_links_3_popular_features_link_title','Guest Account'),(9944,811,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(9945,811,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(9946,811,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(9947,811,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(9948,811,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(9949,811,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(9950,811,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(9951,811,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(9952,811,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(9953,811,'popular_features_links','6'),(9954,811,'_popular_features_links','field_5d5714d1c6531'),(9955,812,'title_hero','Solving for the<br> digital future of<br> cruising'),(9956,812,'_title_hero','field_5d2cbfcfc7b2b'),(9957,812,'title_quote','Tech that'),(9958,812,'_title_quote','field_5d2cc09b51dfa'),(9959,812,'title_strong_quote','ships'),(9960,812,'_title_strong_quote','field_5d2cc0db51dfc'),(9961,812,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(9962,812,'_description_quote','field_5d2cc0a851dfb'),(9963,812,'imagem_quote','45'),(9964,812,'_imagem_quote','field_5d2cc0ed51dfd'),(9965,812,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(9966,812,'_description_blockquote','field_5d2cc22c9da9a'),(9967,812,'author_blockquote','Richard Fain, in an interview with'),(9968,812,'_author_blockquote','field_5d2cc25a9da9b'),(9969,812,'company','TechRepublic'),(9970,812,'_company','field_5d2cc2769da9c'),(9971,812,'company_blockquote','TechRepublic'),(9972,812,'_company_blockquote','field_5d2cc2769da9c'),(9973,812,'title_featured_i','Tech Edge'),(9974,812,'_title_featured_i','field_5d2cc41890f84'),(9975,812,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(9976,812,'_description_featured_i','field_5d2cc42890f85'),(9977,812,'seletc_type_link_featured_i','Link'),(9978,812,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(9979,812,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(9980,812,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(9981,812,'imagem_featured_i','61'),(9982,812,'_imagem_featured_i','field_5d2cc71559443'),(9983,812,'title_info_numbers','Digital by<br> the numbers'),(9984,812,'_title_info_numbers','field_5d2cc7e517635'),(9985,812,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(9986,812,'_description_info_number','field_5d2cc7f817636'),(9987,812,'app_downloads','2.7M'),(9988,812,'_app_downloads','field_5d2cc83e17637'),(9989,812,'active_users','900K'),(9990,812,'_active_users','field_5d2cc84617638'),(9991,812,'average_ios_rating','4.6'),(9992,812,'_average_ios_rating','field_5d2cc85217639'),(9993,812,'crew_checkins','14k'),(9994,812,'_crew_checkins','field_5d2cc8631763a'),(9995,812,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(9996,812,'_title_featured_ii','field_5d2cc9741153c'),(9997,812,'description_featured_ii',''),(9998,812,'_description_featured_ii','field_5d2cc97e1153d'),(9999,812,'imagem_featured_ii','77'),(10000,812,'_imagem_featured_ii','field_5d2cc98c1153e'),(10001,812,'seletc_type_link_featured_ii','Link'),(10002,812,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(10003,812,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(10004,812,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(10005,812,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(10006,812,'_title_featured_iii','field_5d2ccafff022a'),(10007,812,'description_featured_iii',''),(10008,812,'_description_featured_iii','field_5d2ccb0cf022b'),(10009,812,'imagem_featured_iii','85'),(10010,812,'_imagem_featured_iii','field_5d2ccb21f022c'),(10011,812,'seletc_type_link_featured_iii','Vídeo'),(10012,812,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(10013,812,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(10014,812,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(10015,812,'subtitle_hero','Our guests often ask…'),(10016,812,'_subtitle_hero','field_5d5711764ff01'),(10017,812,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(10018,812,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(10019,812,'hero_section_links_0_hero_section_link_title','Do I need to pay for an Internet package to use the app?'),(10020,812,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(10021,812,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(10022,812,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(10023,812,'hero_section_links_1_hero_section_link_title','Will the app be available on the ship of my upcoming vacation?'),(10024,812,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(10025,812,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(10026,812,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(10027,812,'hero_section_links_2_hero_section_link_title',''),(10028,812,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(10029,812,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(10030,812,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(10031,812,'hero_section_links_3_hero_section_link_title',''),(10032,812,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(10033,812,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(10034,812,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(10035,812,'hero_section_links_4_hero_section_link_title','Do I need to download the app before I board my ship?'),(10036,812,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(10037,812,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(10038,812,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(10039,812,'hero_section_links_5_hero_section_link_title','Which ships are getting the app next?'),(10040,812,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(10041,812,'hero_section_links','6'),(10042,812,'_hero_section_links','field_5d5711cf21851'),(10043,812,'featured_faq_title','Solving for the future of cruising.'),(10044,812,'_featured_faq_title','field_5d57145bc652e'),(10045,812,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(10046,812,'_featured_faq_description','field_5d57146bc652f'),(10047,812,'featured_faq_link','http://royaldigital.labcp.co/'),(10048,812,'_featured_faq_link','field_5d57147ec6530'),(10049,812,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(10050,812,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(10051,812,'popular_features_links_0_popular_features_link_title','Ships'),(10052,812,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(10053,812,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(10054,812,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(10055,812,'popular_features_links_1_popular_features_link_title','Check-in'),(10056,812,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(10057,812,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(10058,812,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(10059,812,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(10060,812,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(10061,812,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(10062,812,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(10063,812,'popular_features_links_3_popular_features_link_title','Guest Account'),(10064,812,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(10065,812,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(10066,812,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(10067,812,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(10068,812,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(10069,812,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(10070,812,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(10071,812,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(10072,812,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(10073,812,'popular_features_links','6'),(10074,812,'_popular_features_links','field_5d5714d1c6531'),(10353,819,'title_hero','Solving for the<br> digital future of<br> cruising'),(10354,819,'_title_hero','field_5d2cbfcfc7b2b'),(10355,819,'title_quote','Tech that'),(10356,819,'_title_quote','field_5d2cc09b51dfa'),(10357,819,'title_strong_quote','ships'),(10358,819,'_title_strong_quote','field_5d2cc0db51dfc'),(10359,819,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(10360,819,'_description_quote','field_5d2cc0a851dfb'),(10361,819,'imagem_quote','45'),(10362,819,'_imagem_quote','field_5d2cc0ed51dfd'),(10363,819,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(10364,819,'_description_blockquote','field_5d2cc22c9da9a'),(10365,819,'author_blockquote','Richard Fain, in an interview with'),(10366,819,'_author_blockquote','field_5d2cc25a9da9b'),(10367,819,'company','TechRepublic'),(10368,819,'_company','field_5d2cc2769da9c'),(10369,819,'company_blockquote','TechRepublic'),(10370,819,'_company_blockquote','field_5d2cc2769da9c'),(10371,819,'title_featured_i','Tech Edge'),(10372,819,'_title_featured_i','field_5d2cc41890f84'),(10373,819,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(10374,819,'_description_featured_i','field_5d2cc42890f85'),(10375,819,'seletc_type_link_featured_i','Link'),(10376,819,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(10377,819,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(10378,819,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(10379,819,'imagem_featured_i','61'),(10380,819,'_imagem_featured_i','field_5d2cc71559443'),(10381,819,'title_info_numbers','Digital by<br> the numbers'),(10382,819,'_title_info_numbers','field_5d2cc7e517635'),(10383,819,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(10384,819,'_description_info_number','field_5d2cc7f817636'),(10385,819,'app_downloads','2.7M'),(10386,819,'_app_downloads','field_5d2cc83e17637'),(10387,819,'active_users','900K'),(10388,819,'_active_users','field_5d2cc84617638'),(10389,819,'average_ios_rating','4.6'),(10390,819,'_average_ios_rating','field_5d2cc85217639'),(10391,819,'crew_checkins','14k'),(10392,819,'_crew_checkins','field_5d2cc8631763a'),(10393,819,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(10394,819,'_title_featured_ii','field_5d2cc9741153c'),(10395,819,'description_featured_ii',''),(10396,819,'_description_featured_ii','field_5d2cc97e1153d'),(10397,819,'imagem_featured_ii','77'),(10398,819,'_imagem_featured_ii','field_5d2cc98c1153e'),(10399,819,'seletc_type_link_featured_ii','Link'),(10400,819,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(10401,819,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(10402,819,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(10403,819,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(10404,819,'_title_featured_iii','field_5d2ccafff022a'),(10405,819,'description_featured_iii',''),(10406,819,'_description_featured_iii','field_5d2ccb0cf022b'),(10407,819,'imagem_featured_iii','85'),(10408,819,'_imagem_featured_iii','field_5d2ccb21f022c'),(10409,819,'seletc_type_link_featured_iii','Vídeo'),(10410,819,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(10411,819,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(10412,819,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(10413,819,'subtitle_hero','Our guests often ask…'),(10414,819,'_subtitle_hero','field_5d5711764ff01'),(10415,819,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(10416,819,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(10417,819,'hero_section_links_0_hero_section_link_title','Is there a charge to use the app?'),(10418,819,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(10419,819,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(10420,819,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(10421,819,'hero_section_links_1_hero_section_link_title','Will the app be available on my ship?'),(10422,819,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(10423,819,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(10424,819,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(10425,819,'hero_section_links_2_hero_section_link_title',''),(10426,819,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(10427,819,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(10428,819,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(10429,819,'hero_section_links_3_hero_section_link_title',''),(10430,819,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(10431,819,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(10432,819,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(10433,819,'hero_section_links_4_hero_section_link_title','Can I download the app onboard my ship?'),(10434,819,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(10435,819,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(10436,819,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(10437,819,'hero_section_links_5_hero_section_link_title','Which ships are getting the app next?'),(10438,819,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(10439,819,'hero_section_links','6'),(10440,819,'_hero_section_links','field_5d5711cf21851'),(10441,819,'featured_faq_title','Solving for the future of cruising.'),(10442,819,'_featured_faq_title','field_5d57145bc652e'),(10443,819,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(10444,819,'_featured_faq_description','field_5d57146bc652f'),(10445,819,'featured_faq_link','http://royaldigital.labcp.co/'),(10446,819,'_featured_faq_link','field_5d57147ec6530'),(10447,819,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(10448,819,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(10449,819,'popular_features_links_0_popular_features_link_title','Ships'),(10450,819,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(10451,819,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(10452,819,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(10453,819,'popular_features_links_1_popular_features_link_title','Check-in'),(10454,819,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(10455,819,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(10456,819,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(10457,819,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(10458,819,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(10459,819,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(10460,819,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(10461,819,'popular_features_links_3_popular_features_link_title','Guest Account'),(10462,819,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(10463,819,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(10464,819,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(10465,819,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(10466,819,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(10467,819,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(10468,819,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(10469,819,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(10470,819,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(10471,819,'popular_features_links','6'),(10472,819,'_popular_features_links','field_5d5714d1c6531'),(10473,820,'title_hero','Solving for the<br> digital future of<br> cruising'),(10474,820,'_title_hero','field_5d2cbfcfc7b2b'),(10475,820,'title_quote','Tech that'),(10476,820,'_title_quote','field_5d2cc09b51dfa'),(10477,820,'title_strong_quote','ships'),(10478,820,'_title_strong_quote','field_5d2cc0db51dfc'),(10479,820,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(10480,820,'_description_quote','field_5d2cc0a851dfb'),(10481,820,'imagem_quote','45'),(10482,820,'_imagem_quote','field_5d2cc0ed51dfd'),(10483,820,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(10484,820,'_description_blockquote','field_5d2cc22c9da9a'),(10485,820,'author_blockquote','Richard Fain, in an interview with'),(10486,820,'_author_blockquote','field_5d2cc25a9da9b'),(10487,820,'company','TechRepublic'),(10488,820,'_company','field_5d2cc2769da9c'),(10489,820,'company_blockquote','TechRepublic'),(10490,820,'_company_blockquote','field_5d2cc2769da9c'),(10491,820,'title_featured_i','Tech Edge'),(10492,820,'_title_featured_i','field_5d2cc41890f84'),(10493,820,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(10494,820,'_description_featured_i','field_5d2cc42890f85'),(10495,820,'seletc_type_link_featured_i','Link'),(10496,820,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(10497,820,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(10498,820,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(10499,820,'imagem_featured_i','61'),(10500,820,'_imagem_featured_i','field_5d2cc71559443'),(10501,820,'title_info_numbers','Digital by<br> the numbers'),(10502,820,'_title_info_numbers','field_5d2cc7e517635'),(10503,820,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(10504,820,'_description_info_number','field_5d2cc7f817636'),(10505,820,'app_downloads','2.7M'),(10506,820,'_app_downloads','field_5d2cc83e17637'),(10507,820,'active_users','900K'),(10508,820,'_active_users','field_5d2cc84617638'),(10509,820,'average_ios_rating','4.6'),(10510,820,'_average_ios_rating','field_5d2cc85217639'),(10511,820,'crew_checkins','14k'),(10512,820,'_crew_checkins','field_5d2cc8631763a'),(10513,820,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(10514,820,'_title_featured_ii','field_5d2cc9741153c'),(10515,820,'description_featured_ii',''),(10516,820,'_description_featured_ii','field_5d2cc97e1153d'),(10517,820,'imagem_featured_ii','77'),(10518,820,'_imagem_featured_ii','field_5d2cc98c1153e'),(10519,820,'seletc_type_link_featured_ii','Link'),(10520,820,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(10521,820,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(10522,820,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(10523,820,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(10524,820,'_title_featured_iii','field_5d2ccafff022a'),(10525,820,'description_featured_iii',''),(10526,820,'_description_featured_iii','field_5d2ccb0cf022b'),(10527,820,'imagem_featured_iii','85'),(10528,820,'_imagem_featured_iii','field_5d2ccb21f022c'),(10529,820,'seletc_type_link_featured_iii','Vídeo'),(10530,820,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(10531,820,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(10532,820,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(10533,820,'subtitle_hero','Our guests often ask…'),(10534,820,'_subtitle_hero','field_5d5711764ff01'),(10535,820,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(10536,820,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(10537,820,'hero_section_links_0_hero_section_link_title','Is there a charge to use the app?'),(10538,820,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(10539,820,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(10540,820,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(10541,820,'hero_section_links_1_hero_section_link_title','Will the app be available on my ship?'),(10542,820,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(10543,820,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(10544,820,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(10545,820,'hero_section_links_2_hero_section_link_title',''),(10546,820,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(10547,820,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(10548,820,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(10549,820,'hero_section_links_3_hero_section_link_title',''),(10550,820,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(10551,820,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(10552,820,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(10553,820,'hero_section_links_4_hero_section_link_title','Can I download the app onboard the ship?'),(10554,820,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(10555,820,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(10556,820,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(10557,820,'hero_section_links_5_hero_section_link_title','What is Expedited Arrival? How do I qualify?'),(10558,820,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(10559,820,'hero_section_links','6'),(10560,820,'_hero_section_links','field_5d5711cf21851'),(10561,820,'featured_faq_title','Solving for the future of cruising.'),(10562,820,'_featured_faq_title','field_5d57145bc652e'),(10563,820,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(10564,820,'_featured_faq_description','field_5d57146bc652f'),(10565,820,'featured_faq_link','http://royaldigital.labcp.co/'),(10566,820,'_featured_faq_link','field_5d57147ec6530'),(10567,820,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(10568,820,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(10569,820,'popular_features_links_0_popular_features_link_title','Ships'),(10570,820,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(10571,820,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(10572,820,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(10573,820,'popular_features_links_1_popular_features_link_title','Check-in'),(10574,820,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(10575,820,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(10576,820,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(10577,820,'popular_features_links_2_popular_features_link_title','Onboard Wi-Fi'),(10578,820,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(10579,820,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(10580,820,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(10581,820,'popular_features_links_3_popular_features_link_title','Guest Account'),(10582,820,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(10583,820,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(10584,820,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(10585,820,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(10586,820,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(10587,820,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(10588,820,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(10589,820,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(10590,820,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(10591,820,'popular_features_links','6'),(10592,820,'_popular_features_links','field_5d5714d1c6531'),(10593,160,'technology_5_title_technology','Onboard Account'),(10594,160,'_technology_5_title_technology','field_5d2f2748dcd06'),(10595,160,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10596,160,'_technology_5_description_technology','field_5d2f2754dcd07'),(10655,823,'author_news','2'),(10656,823,'_author_news','field_5d3083fbbea51'),(10657,823,'select_brand','144'),(10658,823,'_select_brand','field_5d3084d736561'),(10659,823,'featured_post','0'),(10660,823,'_featured_post','field_5d30852c7c4e7'),(10661,823,'legend_featured_image',''),(10662,823,'_legend_featured_image','field_5d39e9d4ef8f8'),(10663,823,'select_posts_related',''),(10664,823,'_select_posts_related','field_5d3afdcff5db7'),(10669,824,'author_news','2'),(10670,824,'_author_news','field_5d3083fbbea51'),(10671,824,'select_brand','144'),(10672,824,'_select_brand','field_5d3084d736561'),(10673,824,'featured_post','0'),(10674,824,'_featured_post','field_5d30852c7c4e7'),(10675,824,'legend_featured_image',''),(10676,824,'_legend_featured_image','field_5d39e9d4ef8f8'),(10677,824,'select_posts_related',''),(10678,824,'_select_posts_related','field_5d3afdcff5db7'),(10679,139,'technology_9_title_technology','MyTV'),(10680,139,'_technology_9_title_technology','field_5d2f2748dcd06'),(10681,139,'technology_9_description_technology','Watch movies, stream your favorite shows & learn about the ship from the comfort of your stateroom.'),(10682,139,'_technology_9_description_technology','field_5d2f2754dcd07'),(10823,714,'technology_4_title_technology','Onboard Account'),(10824,714,'_technology_4_title_technology','field_5d2f2748dcd06'),(10825,714,'technology_4_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10826,714,'_technology_4_description_technology','field_5d2f2754dcd07'),(10897,161,'technology_5_title_technology','Onboard Account'),(10898,161,'_technology_5_title_technology','field_5d2f2748dcd06'),(10899,161,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10900,161,'_technology_5_description_technology','field_5d2f2754dcd07'),(10901,159,'technology_2_title_technology','Reservations'),(10902,159,'_technology_2_title_technology','field_5d2f2748dcd06'),(10903,159,'technology_2_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(10904,159,'_technology_2_description_technology','field_5d2f2754dcd07'),(10905,158,'technology_6_title_technology','Guest-to-Guest Chat'),(10906,158,'_technology_6_title_technology','field_5d2f2748dcd06'),(10907,158,'technology_6_description_technology','Connect directly with fellow travelers in real time using the app. '),(10908,158,'_technology_6_description_technology','field_5d2f2754dcd07'),(10909,157,'technology_2_title_technology','Reservations'),(10910,157,'_technology_2_title_technology','field_5d2f2748dcd06'),(10911,157,'technology_2_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(10912,157,'_technology_2_description_technology','field_5d2f2754dcd07'),(10913,156,'technology_2_title_technology','Reservations'),(10914,156,'_technology_2_title_technology','field_5d2f2748dcd06'),(10915,156,'technology_2_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(10916,156,'_technology_2_description_technology','field_5d2f2754dcd07'),(10917,155,'technology_5_title_technology','Onboard Account '),(10918,155,'_technology_5_title_technology','field_5d2f2748dcd06'),(10919,155,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10920,155,'_technology_5_description_technology','field_5d2f2754dcd07'),(10921,154,'technology_5_title_technology','Onboard Account'),(10922,154,'_technology_5_title_technology','field_5d2f2748dcd06'),(10923,154,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10924,154,'_technology_5_description_technology','field_5d2f2754dcd07'),(10925,152,'technology_5_title_technology','Onboard Account'),(10926,152,'_technology_5_title_technology','field_5d2f2748dcd06'),(10927,152,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10928,152,'_technology_5_description_technology','field_5d2f2754dcd07'),(10929,151,'technology_5_title_technology','Onboard Account'),(10930,151,'_technology_5_title_technology','field_5d2f2748dcd06'),(10931,151,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10932,151,'_technology_5_description_technology','field_5d2f2754dcd07'),(10933,150,'technology_3_title_technology','X-Ray Vision'),(10934,150,'_technology_3_title_technology','field_5d2f2748dcd06'),(10935,150,'technology_3_description_technology','Use the app to get an inside look at what’s going on in the bridge.'),(10936,150,'_technology_3_description_technology','field_5d2f2754dcd07'),(10937,149,'technology_8_title_technology','A/R Boardwalk'),(10938,149,'_technology_8_title_technology','field_5d2f2748dcd06'),(10939,149,'technology_8_description_technology','Fun comes to life in our augmented reality games, available in the mobile app.'),(10940,149,'_technology_8_description_technology','field_5d2f2754dcd07'),(10941,148,'technology_8_title_technology','A/R Boardwalk'),(10942,148,'_technology_8_title_technology','field_5d2f2748dcd06'),(10943,148,'technology_8_description_technology','Fun comes to life in our augmented reality games, available in the mobile app.'),(10944,148,'_technology_8_description_technology','field_5d2f2754dcd07'),(10945,153,'technology_5_title_technology','Onboard Account'),(10946,153,'_technology_5_title_technology','field_5d2f2748dcd06'),(10947,153,'technology_5_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10948,153,'_technology_5_description_technology','field_5d2f2754dcd07'),(10949,147,'technology_3_title_technology','Onboard Account'),(10950,147,'_technology_3_title_technology','field_5d2f2748dcd06'),(10951,147,'technology_3_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(10952,147,'_technology_3_description_technology','field_5d2f2754dcd07'),(10953,141,'technology_5_title_technology','Guest-to-Guest Chat'),(10954,141,'_technology_5_title_technology','field_5d2f2748dcd06'),(10955,141,'technology_5_description_technology','Connect directly with fellow travelers in real time using the app. '),(10956,141,'_technology_5_description_technology','field_5d2f2754dcd07'),(10957,140,'technology_6_title_technology','Guest-to-Guest Chat'),(10958,140,'_technology_6_title_technology','field_5d2f2748dcd06'),(10959,140,'technology_6_description_technology','Connect directly with fellow travelers in real time using the app. '),(10960,140,'_technology_6_description_technology','field_5d2f2754dcd07'),(10961,113,'technology_7_title_technology','In-App TV Remote'),(10962,113,'_technology_7_title_technology','field_5d2f2748dcd06'),(10963,113,'technology_7_description_technology','Use your mobile device to control the functionality of your stateroom TV!'),(10964,113,'_technology_7_description_technology','field_5d2f2754dcd07'),(10965,108,'technology_6_title_technology','Digital Key'),(10966,108,'_technology_6_title_technology','field_5d2f2748dcd06'),(10967,108,'technology_6_description_technology','Access your stateroom with the convenience of your mobile device.'),(10968,108,'_technology_6_description_technology','field_5d2f2754dcd07'),(10969,380,'description_post','Your easy to use tool for enhanced vacation'),(10970,380,'_description_post','field_5d55bc8c63af0'),(10971,381,'description_post','Starting your vacation sooner has never been easier.'),(10972,381,'_description_post','field_5d55bc8c63af0'),(10973,367,'description_post','Video test'),(10974,367,'_description_post','field_5d55bc8c63af0'),(10975,828,'_edit_lock','1591636220:9'),(10976,828,'_wp_page_template','page-news-all.php'),(10977,830,'_edit_lock','1567200322:1'),(10978,830,'_wp_page_template','page-faq-all.php'),(10979,833,'title_hero','Solving for the<br> digital future of<br> cruising'),(10980,833,'_title_hero','field_5d2cbfcfc7b2b'),(10981,833,'title_quote','Tech that'),(10982,833,'_title_quote','field_5d2cc09b51dfa'),(10983,833,'title_strong_quote','ships'),(10984,833,'_title_strong_quote','field_5d2cc0db51dfc'),(10985,833,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(10986,833,'_description_quote','field_5d2cc0a851dfb'),(10987,833,'imagem_quote','45'),(10988,833,'_imagem_quote','field_5d2cc0ed51dfd'),(10989,833,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(10990,833,'_description_blockquote','field_5d2cc22c9da9a'),(10991,833,'author_blockquote','Richard Fain, in an interview with'),(10992,833,'_author_blockquote','field_5d2cc25a9da9b'),(10993,833,'company','TechRepublic'),(10994,833,'_company','field_5d2cc2769da9c'),(10995,833,'company_blockquote','TechRepublic'),(10996,833,'_company_blockquote','field_5d2cc2769da9c'),(10997,833,'title_featured_i','Tech Edge'),(10998,833,'_title_featured_i','field_5d2cc41890f84'),(10999,833,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(11000,833,'_description_featured_i','field_5d2cc42890f85'),(11001,833,'seletc_type_link_featured_i','Link'),(11002,833,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(11003,833,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(11004,833,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(11005,833,'imagem_featured_i','61'),(11006,833,'_imagem_featured_i','field_5d2cc71559443'),(11007,833,'title_info_numbers','Digital by<br> the numbers'),(11008,833,'_title_info_numbers','field_5d2cc7e517635'),(11009,833,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(11010,833,'_description_info_number','field_5d2cc7f817636'),(11011,833,'app_downloads','2.7M'),(11012,833,'_app_downloads','field_5d2cc83e17637'),(11013,833,'active_users','900K'),(11014,833,'_active_users','field_5d2cc84617638'),(11015,833,'average_ios_rating','4.6'),(11016,833,'_average_ios_rating','field_5d2cc85217639'),(11017,833,'crew_checkins','14k'),(11018,833,'_crew_checkins','field_5d2cc8631763a'),(11019,833,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(11020,833,'_title_featured_ii','field_5d2cc9741153c'),(11021,833,'description_featured_ii',''),(11022,833,'_description_featured_ii','field_5d2cc97e1153d'),(11023,833,'imagem_featured_ii','77'),(11024,833,'_imagem_featured_ii','field_5d2cc98c1153e'),(11025,833,'seletc_type_link_featured_ii','Link'),(11026,833,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(11027,833,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(11028,833,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(11029,833,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(11030,833,'_title_featured_iii','field_5d2ccafff022a'),(11031,833,'description_featured_iii',''),(11032,833,'_description_featured_iii','field_5d2ccb0cf022b'),(11033,833,'imagem_featured_iii','85'),(11034,833,'_imagem_featured_iii','field_5d2ccb21f022c'),(11035,833,'seletc_type_link_featured_iii','Vídeo'),(11036,833,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(11037,833,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(11038,833,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(11039,833,'subtitle_hero','Our guests often ask…'),(11040,833,'_subtitle_hero','field_5d5711764ff01'),(11041,833,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(11042,833,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(11043,833,'hero_section_links_0_hero_section_link_title','Is there a charge to use the app?'),(11044,833,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(11045,833,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(11046,833,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(11047,833,'hero_section_links_1_hero_section_link_title','Will the app be available on my ship?'),(11048,833,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(11049,833,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(11050,833,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(11051,833,'hero_section_links_2_hero_section_link_title',''),(11052,833,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(11053,833,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(11054,833,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(11055,833,'hero_section_links_3_hero_section_link_title',''),(11056,833,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(11057,833,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/'),(11058,833,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(11059,833,'hero_section_links_4_hero_section_link_title','Can I download the app onboard the ship?'),(11060,833,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(11061,833,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/'),(11062,833,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(11063,833,'hero_section_links_5_hero_section_link_title','What is Expedited Arrival? How do I qualify?'),(11064,833,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(11065,833,'hero_section_links','6'),(11066,833,'_hero_section_links','field_5d5711cf21851'),(11067,833,'featured_faq_title','Solving for the future of cruising.'),(11068,833,'_featured_faq_title','field_5d57145bc652e'),(11069,833,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11070,833,'_featured_faq_description','field_5d57146bc652f'),(11071,833,'featured_faq_link','http://royaldigital.labcp.co/'),(11072,833,'_featured_faq_link','field_5d57147ec6530'),(11073,833,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(11074,833,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(11075,833,'popular_features_links_0_popular_features_link_title','Ships'),(11076,833,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(11077,833,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(11078,833,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(11079,833,'popular_features_links_1_popular_features_link_title','Check-in'),(11080,833,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(11081,833,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(11082,833,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(11083,833,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(11084,833,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(11085,833,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(11086,833,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(11087,833,'popular_features_links_3_popular_features_link_title','Guest Account'),(11088,833,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(11089,833,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(11090,833,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(11091,833,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(11092,833,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(11093,833,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(11094,833,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(11095,833,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(11096,833,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(11097,833,'popular_features_links','6'),(11098,833,'_popular_features_links','field_5d5714d1c6531'),(11099,834,'hero_section_title','Frequenty asked questions'),(11100,834,'_hero_section_title','field_5d55a345f8cdb'),(11101,834,'hero_section_image','533'),(11102,834,'_hero_section_image','field_5d55a424f8cdc'),(11103,834,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(11104,834,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(11105,834,'hero_section_links_0_hero_section_link_title','What can i do with the mobile appp?'),(11106,834,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(11107,834,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(11108,834,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(11109,834,'hero_section_links_1_hero_section_link_title','What can i do with the mobile appp?'),(11110,834,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(11111,834,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(11112,834,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(11113,834,'hero_section_links_2_hero_section_link_title','What can i do with the mobile appp?'),(11114,834,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(11115,834,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co'),(11116,834,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(11117,834,'hero_section_links_3_hero_section_link_title','What can i do with the mobile appp?'),(11118,834,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(11119,834,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co'),(11120,834,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(11121,834,'hero_section_links_4_hero_section_link_title','What can i do with the mobile appp?'),(11122,834,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(11123,834,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(11124,834,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(11125,834,'hero_section_links_5_hero_section_link_title','What can i do with the mobile appp?'),(11126,834,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(11127,834,'hero_section_links','6'),(11128,834,'_hero_section_links','field_5d55a451f8cdd'),(11129,834,'popular_features_title','Popular Features'),(11130,834,'_popular_features_title','field_5d55abb7ffa2d'),(11131,834,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(11132,834,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(11133,834,'popular_features_links_0_popular_features_link_title','Ships'),(11134,834,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(11135,834,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(11136,834,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(11137,834,'popular_features_links_1_popular_features_link_title','Guest Account'),(11138,834,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(11139,834,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(11140,834,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(11141,834,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(11142,834,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(11143,834,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(11144,834,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(11145,834,'popular_features_links_3_popular_features_link_title','Check-in'),(11146,834,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(11147,834,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(11148,834,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(11149,834,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(11150,834,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(11151,834,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(11152,834,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(11153,834,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(11154,834,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(11155,834,'popular_features_links','6'),(11156,834,'_popular_features_links','field_5d55ac6b2b75e'),(11157,834,'helpful_articles_title','Helpful articles and how-to\'s'),(11158,834,'_helpful_articles_title','field_5d55b136c34eb'),(11159,834,'post_image_right_title','Solving for the future of cruising.'),(11160,834,'_post_image_right_title','field_5d55b49247b3a'),(11161,834,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11162,834,'_post_image_right_description','field_5d55b49b47b3b'),(11163,834,'post_image_right_title_link','Learn more'),(11164,834,'_post_image_right_title_link','field_5d55b4a747b3c'),(11165,834,'post_image_right_link','http://royaldigital.labcp.co'),(11166,834,'_post_image_right_link','field_5d55b4b247b3d'),(11167,834,'post_image_right_image','527'),(11168,834,'_post_image_right_image','field_5d55b4be47b3e'),(11169,834,'post_image_left_title','Learn how to plan your vacation in minutes'),(11170,834,'_post_image_left_title','field_5d55b69a7e8a7'),(11171,834,'post_image_left_link','https://vimeo.com/'),(11172,834,'_post_image_left_link','field_5d55b6a47e8a8'),(11173,834,'post_image_left_image','536'),(11174,834,'_post_image_left_image','field_5d55b6b47e8a9'),(11175,834,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(11176,834,'_select_posts','field_5d55ba1e32eec'),(11177,834,'seletc_type_link','Vídeo'),(11178,834,'_seletc_type_link','field_5d57093fdc431'),(11179,834,'post_image_left_id_video','344894438'),(11180,834,'_post_image_left_id_video','field_5d570987dc432'),(11181,835,'title_hero','Solving for the<br> digital future of<br> cruising'),(11182,835,'_title_hero','field_5d2cbfcfc7b2b'),(11183,835,'title_quote','Tech that'),(11184,835,'_title_quote','field_5d2cc09b51dfa'),(11185,835,'title_strong_quote','ships'),(11186,835,'_title_strong_quote','field_5d2cc0db51dfc'),(11187,835,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(11188,835,'_description_quote','field_5d2cc0a851dfb'),(11189,835,'imagem_quote','45'),(11190,835,'_imagem_quote','field_5d2cc0ed51dfd'),(11191,835,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(11192,835,'_description_blockquote','field_5d2cc22c9da9a'),(11193,835,'author_blockquote','Richard Fain, in an interview with'),(11194,835,'_author_blockquote','field_5d2cc25a9da9b'),(11195,835,'company','TechRepublic'),(11196,835,'_company','field_5d2cc2769da9c'),(11197,835,'company_blockquote','TechRepublic'),(11198,835,'_company_blockquote','field_5d2cc2769da9c'),(11199,835,'title_featured_i','Tech Edge'),(11200,835,'_title_featured_i','field_5d2cc41890f84'),(11201,835,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(11202,835,'_description_featured_i','field_5d2cc42890f85'),(11203,835,'seletc_type_link_featured_i','Link'),(11204,835,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(11205,835,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(11206,835,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(11207,835,'imagem_featured_i','61'),(11208,835,'_imagem_featured_i','field_5d2cc71559443'),(11209,835,'title_info_numbers','Digital by<br> the numbers'),(11210,835,'_title_info_numbers','field_5d2cc7e517635'),(11211,835,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(11212,835,'_description_info_number','field_5d2cc7f817636'),(11213,835,'app_downloads','2.7M'),(11214,835,'_app_downloads','field_5d2cc83e17637'),(11215,835,'active_users','900K'),(11216,835,'_active_users','field_5d2cc84617638'),(11217,835,'average_ios_rating','4.6'),(11218,835,'_average_ios_rating','field_5d2cc85217639'),(11219,835,'crew_checkins','14k'),(11220,835,'_crew_checkins','field_5d2cc8631763a'),(11221,835,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(11222,835,'_title_featured_ii','field_5d2cc9741153c'),(11223,835,'description_featured_ii',''),(11224,835,'_description_featured_ii','field_5d2cc97e1153d'),(11225,835,'imagem_featured_ii','77'),(11226,835,'_imagem_featured_ii','field_5d2cc98c1153e'),(11227,835,'seletc_type_link_featured_ii','Link'),(11228,835,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(11229,835,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(11230,835,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(11231,835,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(11232,835,'_title_featured_iii','field_5d2ccafff022a'),(11233,835,'description_featured_iii',''),(11234,835,'_description_featured_iii','field_5d2ccb0cf022b'),(11235,835,'imagem_featured_iii','85'),(11236,835,'_imagem_featured_iii','field_5d2ccb21f022c'),(11237,835,'seletc_type_link_featured_iii','Vídeo'),(11238,835,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(11239,835,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(11240,835,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(11241,835,'subtitle_hero','Our guests often ask…'),(11242,835,'_subtitle_hero','field_5d5711764ff01'),(11243,835,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/'),(11244,835,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(11245,835,'hero_section_links_0_hero_section_link_title','Is there a charge to use the app?'),(11246,835,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(11247,835,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(11248,835,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(11249,835,'hero_section_links_1_hero_section_link_title','Will the app be available on my ship?'),(11250,835,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(11251,835,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(11252,835,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(11253,835,'hero_section_links_2_hero_section_link_title','Can I download the app onboard the ship?'),(11254,835,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(11255,835,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(11256,835,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(11257,835,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival? How do I qualify?'),(11258,835,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(11259,835,'hero_section_links_4_hero_section_link',''),(11260,835,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(11261,835,'hero_section_links_4_hero_section_link_title',''),(11262,835,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(11263,835,'hero_section_links_5_hero_section_link',''),(11264,835,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(11265,835,'hero_section_links_5_hero_section_link_title',''),(11266,835,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(11267,835,'hero_section_links','6'),(11268,835,'_hero_section_links','field_5d5711cf21851'),(11269,835,'featured_faq_title','Solving for the future of cruising.'),(11270,835,'_featured_faq_title','field_5d57145bc652e'),(11271,835,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11272,835,'_featured_faq_description','field_5d57146bc652f'),(11273,835,'featured_faq_link','http://royaldigital.labcp.co/'),(11274,835,'_featured_faq_link','field_5d57147ec6530'),(11275,835,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(11276,835,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(11277,835,'popular_features_links_0_popular_features_link_title','Ships'),(11278,835,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(11279,835,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(11280,835,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(11281,835,'popular_features_links_1_popular_features_link_title','Check-in'),(11282,835,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(11283,835,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(11284,835,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(11285,835,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(11286,835,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(11287,835,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(11288,835,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(11289,835,'popular_features_links_3_popular_features_link_title','Guest Account'),(11290,835,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(11291,835,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(11292,835,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(11293,835,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(11294,835,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(11295,835,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(11296,835,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(11297,835,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(11298,835,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(11299,835,'popular_features_links','6'),(11300,835,'_popular_features_links','field_5d5714d1c6531'),(11529,842,'_edit_lock','1567540887:1'),(11530,842,'_wp_page_template','page-faq-media.php'),(11531,844,'_edit_lock','1567540908:1'),(11532,844,'_wp_page_template','page-news-media.php'),(11560,849,'title_hero','Solving for the<br> digital future of<br> cruising'),(11561,849,'_title_hero','field_5d2cbfcfc7b2b'),(11562,849,'title_quote','Tech that'),(11563,849,'_title_quote','field_5d2cc09b51dfa'),(11564,849,'title_strong_quote','ships'),(11565,849,'_title_strong_quote','field_5d2cc0db51dfc'),(11566,849,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(11567,849,'_description_quote','field_5d2cc0a851dfb'),(11568,849,'imagem_quote','45'),(11569,849,'_imagem_quote','field_5d2cc0ed51dfd'),(11570,849,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(11571,849,'_description_blockquote','field_5d2cc22c9da9a'),(11572,849,'author_blockquote','Richard Fain, in an interview with'),(11573,849,'_author_blockquote','field_5d2cc25a9da9b'),(11574,849,'company','TechRepublic'),(11575,849,'_company','field_5d2cc2769da9c'),(11576,849,'company_blockquote','TechRepublic'),(11577,849,'_company_blockquote','field_5d2cc2769da9c'),(11578,849,'title_featured_i','Tech Edge'),(11579,849,'_title_featured_i','field_5d2cc41890f84'),(11580,849,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(11581,849,'_description_featured_i','field_5d2cc42890f85'),(11582,849,'seletc_type_link_featured_i','Link'),(11583,849,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(11584,849,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(11585,849,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(11586,849,'imagem_featured_i','61'),(11587,849,'_imagem_featured_i','field_5d2cc71559443'),(11588,849,'title_info_numbers','Digital by<br> the numbers'),(11589,849,'_title_info_numbers','field_5d2cc7e517635'),(11590,849,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(11591,849,'_description_info_number','field_5d2cc7f817636'),(11592,849,'app_downloads','2.7M'),(11593,849,'_app_downloads','field_5d2cc83e17637'),(11594,849,'active_users','900K'),(11595,849,'_active_users','field_5d2cc84617638'),(11596,849,'average_ios_rating','4.6'),(11597,849,'_average_ios_rating','field_5d2cc85217639'),(11598,849,'crew_checkins','14k'),(11599,849,'_crew_checkins','field_5d2cc8631763a'),(11600,849,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(11601,849,'_title_featured_ii','field_5d2cc9741153c'),(11602,849,'description_featured_ii',''),(11603,849,'_description_featured_ii','field_5d2cc97e1153d'),(11604,849,'imagem_featured_ii','77'),(11605,849,'_imagem_featured_ii','field_5d2cc98c1153e'),(11606,849,'seletc_type_link_featured_ii','Link'),(11607,849,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(11608,849,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(11609,849,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(11610,849,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(11611,849,'_title_featured_iii','field_5d2ccafff022a'),(11612,849,'description_featured_iii',''),(11613,849,'_description_featured_iii','field_5d2ccb0cf022b'),(11614,849,'imagem_featured_iii','85'),(11615,849,'_imagem_featured_iii','field_5d2ccb21f022c'),(11616,849,'seletc_type_link_featured_iii','Vídeo'),(11617,849,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(11618,849,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(11619,849,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(11620,849,'subtitle_hero','Our guests often ask…'),(11621,849,'_subtitle_hero','field_5d5711764ff01'),(11622,849,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(11623,849,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(11624,849,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(11625,849,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(11626,849,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(11627,849,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(11628,849,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(11629,849,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(11630,849,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(11631,849,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(11632,849,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(11633,849,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(11634,849,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(11635,849,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(11636,849,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(11637,849,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(11638,849,'hero_section_links_4_hero_section_link',''),(11639,849,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(11640,849,'hero_section_links_4_hero_section_link_title',''),(11641,849,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(11642,849,'hero_section_links_5_hero_section_link',''),(11643,849,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(11644,849,'hero_section_links_5_hero_section_link_title',''),(11645,849,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(11646,849,'hero_section_links','6'),(11647,849,'_hero_section_links','field_5d5711cf21851'),(11648,849,'featured_faq_title','Solving for the future of cruising.'),(11649,849,'_featured_faq_title','field_5d57145bc652e'),(11650,849,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11651,849,'_featured_faq_description','field_5d57146bc652f'),(11652,849,'featured_faq_link','http://royaldigital.labcp.co/'),(11653,849,'_featured_faq_link','field_5d57147ec6530'),(11654,849,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(11655,849,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(11656,849,'popular_features_links_0_popular_features_link_title','Ships'),(11657,849,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(11658,849,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(11659,849,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(11660,849,'popular_features_links_1_popular_features_link_title','Check-in'),(11661,849,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(11662,849,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(11663,849,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(11664,849,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(11665,849,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(11666,849,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(11667,849,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(11668,849,'popular_features_links_3_popular_features_link_title','Guest Account'),(11669,849,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(11670,849,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(11671,849,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(11672,849,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(11673,849,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(11674,849,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(11675,849,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(11676,849,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(11677,849,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(11678,849,'popular_features_links','6'),(11679,849,'_popular_features_links','field_5d5714d1c6531'),(11680,850,'title_hero','Solving for the<br> digital future of<br> cruising'),(11681,850,'_title_hero','field_5d2cbfcfc7b2b'),(11682,850,'title_quote','Tech that'),(11683,850,'_title_quote','field_5d2cc09b51dfa'),(11684,850,'title_strong_quote','ships'),(11685,850,'_title_strong_quote','field_5d2cc0db51dfc'),(11686,850,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(11687,850,'_description_quote','field_5d2cc0a851dfb'),(11688,850,'imagem_quote','45'),(11689,850,'_imagem_quote','field_5d2cc0ed51dfd'),(11690,850,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(11691,850,'_description_blockquote','field_5d2cc22c9da9a'),(11692,850,'author_blockquote','Richard Fain, in an interview with'),(11693,850,'_author_blockquote','field_5d2cc25a9da9b'),(11694,850,'company','TechRepublic'),(11695,850,'_company','field_5d2cc2769da9c'),(11696,850,'company_blockquote','TechRepublic'),(11697,850,'_company_blockquote','field_5d2cc2769da9c'),(11698,850,'title_featured_i','Tech Edge'),(11699,850,'_title_featured_i','field_5d2cc41890f84'),(11700,850,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(11701,850,'_description_featured_i','field_5d2cc42890f85'),(11702,850,'seletc_type_link_featured_i','Link'),(11703,850,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(11704,850,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(11705,850,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(11706,850,'imagem_featured_i','61'),(11707,850,'_imagem_featured_i','field_5d2cc71559443'),(11708,850,'title_info_numbers','Digital by<br> the numbers'),(11709,850,'_title_info_numbers','field_5d2cc7e517635'),(11710,850,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(11711,850,'_description_info_number','field_5d2cc7f817636'),(11712,850,'app_downloads','2.7M'),(11713,850,'_app_downloads','field_5d2cc83e17637'),(11714,850,'active_users','900K'),(11715,850,'_active_users','field_5d2cc84617638'),(11716,850,'average_ios_rating','4.6'),(11717,850,'_average_ios_rating','field_5d2cc85217639'),(11718,850,'crew_checkins','14k'),(11719,850,'_crew_checkins','field_5d2cc8631763a'),(11720,850,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(11721,850,'_title_featured_ii','field_5d2cc9741153c'),(11722,850,'description_featured_ii',''),(11723,850,'_description_featured_ii','field_5d2cc97e1153d'),(11724,850,'imagem_featured_ii','77'),(11725,850,'_imagem_featured_ii','field_5d2cc98c1153e'),(11726,850,'seletc_type_link_featured_ii','Link'),(11727,850,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(11728,850,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(11729,850,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(11730,850,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(11731,850,'_title_featured_iii','field_5d2ccafff022a'),(11732,850,'description_featured_iii',''),(11733,850,'_description_featured_iii','field_5d2ccb0cf022b'),(11734,850,'imagem_featured_iii','85'),(11735,850,'_imagem_featured_iii','field_5d2ccb21f022c'),(11736,850,'seletc_type_link_featured_iii','Vídeo'),(11737,850,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(11738,850,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(11739,850,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(11740,850,'subtitle_hero','Our guests often ask…'),(11741,850,'_subtitle_hero','field_5d5711764ff01'),(11742,850,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(11743,850,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(11744,850,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(11745,850,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(11746,850,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(11747,850,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(11748,850,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(11749,850,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(11750,850,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(11751,850,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(11752,850,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(11753,850,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(11754,850,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/'),(11755,850,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(11756,850,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(11757,850,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(11758,850,'hero_section_links_4_hero_section_link',''),(11759,850,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(11760,850,'hero_section_links_4_hero_section_link_title',''),(11761,850,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(11762,850,'hero_section_links_5_hero_section_link',''),(11763,850,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(11764,850,'hero_section_links_5_hero_section_link_title',''),(11765,850,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(11766,850,'hero_section_links','6'),(11767,850,'_hero_section_links','field_5d5711cf21851'),(11768,850,'featured_faq_title','Solving for the future of cruising.'),(11769,850,'_featured_faq_title','field_5d57145bc652e'),(11770,850,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11771,850,'_featured_faq_description','field_5d57146bc652f'),(11772,850,'featured_faq_link','http://royaldigital.labcp.co/'),(11773,850,'_featured_faq_link','field_5d57147ec6530'),(11774,850,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(11775,850,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(11776,850,'popular_features_links_0_popular_features_link_title','Ships'),(11777,850,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(11778,850,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(11779,850,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(11780,850,'popular_features_links_1_popular_features_link_title','Check-in'),(11781,850,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(11782,850,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(11783,850,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(11784,850,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(11785,850,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(11786,850,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(11787,850,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(11788,850,'popular_features_links_3_popular_features_link_title','Guest Account'),(11789,850,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(11790,850,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(11791,850,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(11792,850,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(11793,850,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(11794,850,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(11795,850,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(11796,850,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(11797,850,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(11798,850,'popular_features_links','6'),(11799,850,'_popular_features_links','field_5d5714d1c6531'),(11804,851,'title_hero','Solving for the<br> digital future of<br> cruising'),(11805,851,'_title_hero','field_5d2cbfcfc7b2b'),(11806,851,'title_quote','Tech that'),(11807,851,'_title_quote','field_5d2cc09b51dfa'),(11808,851,'title_strong_quote','ships'),(11809,851,'_title_strong_quote','field_5d2cc0db51dfc'),(11810,851,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(11811,851,'_description_quote','field_5d2cc0a851dfb'),(11812,851,'imagem_quote','45'),(11813,851,'_imagem_quote','field_5d2cc0ed51dfd'),(11814,851,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(11815,851,'_description_blockquote','field_5d2cc22c9da9a'),(11816,851,'author_blockquote','Richard Fain, in an interview with'),(11817,851,'_author_blockquote','field_5d2cc25a9da9b'),(11818,851,'company','TechRepublic'),(11819,851,'_company','field_5d2cc2769da9c'),(11820,851,'company_blockquote','TechRepublic'),(11821,851,'_company_blockquote','field_5d2cc2769da9c'),(11822,851,'title_featured_i','Tech Edge'),(11823,851,'_title_featured_i','field_5d2cc41890f84'),(11824,851,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(11825,851,'_description_featured_i','field_5d2cc42890f85'),(11826,851,'seletc_type_link_featured_i','Link'),(11827,851,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(11828,851,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(11829,851,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(11830,851,'imagem_featured_i','61'),(11831,851,'_imagem_featured_i','field_5d2cc71559443'),(11832,851,'title_info_numbers','Digital by<br> the numbers'),(11833,851,'_title_info_numbers','field_5d2cc7e517635'),(11834,851,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(11835,851,'_description_info_number','field_5d2cc7f817636'),(11836,851,'app_downloads','2.7M'),(11837,851,'_app_downloads','field_5d2cc83e17637'),(11838,851,'active_users','900K'),(11839,851,'_active_users','field_5d2cc84617638'),(11840,851,'average_ios_rating','4.6'),(11841,851,'_average_ios_rating','field_5d2cc85217639'),(11842,851,'crew_checkins','14k'),(11843,851,'_crew_checkins','field_5d2cc8631763a'),(11844,851,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(11845,851,'_title_featured_ii','field_5d2cc9741153c'),(11846,851,'description_featured_ii',''),(11847,851,'_description_featured_ii','field_5d2cc97e1153d'),(11848,851,'imagem_featured_ii','77'),(11849,851,'_imagem_featured_ii','field_5d2cc98c1153e'),(11850,851,'seletc_type_link_featured_ii','Link'),(11851,851,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(11852,851,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(11853,851,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(11854,851,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(11855,851,'_title_featured_iii','field_5d2ccafff022a'),(11856,851,'description_featured_iii',''),(11857,851,'_description_featured_iii','field_5d2ccb0cf022b'),(11858,851,'imagem_featured_iii','85'),(11859,851,'_imagem_featured_iii','field_5d2ccb21f022c'),(11860,851,'seletc_type_link_featured_iii','Vídeo'),(11861,851,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(11862,851,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(11863,851,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(11864,851,'subtitle_hero','Our guests often ask…'),(11865,851,'_subtitle_hero','field_5d5711764ff01'),(11866,851,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(11867,851,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(11868,851,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(11869,851,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(11870,851,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/'),(11871,851,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(11872,851,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(11873,851,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(11874,851,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(11875,851,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(11876,851,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(11877,851,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(11878,851,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(11879,851,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(11880,851,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(11881,851,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(11882,851,'hero_section_links_4_hero_section_link',''),(11883,851,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(11884,851,'hero_section_links_4_hero_section_link_title',''),(11885,851,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(11886,851,'hero_section_links_5_hero_section_link',''),(11887,851,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(11888,851,'hero_section_links_5_hero_section_link_title',''),(11889,851,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(11890,851,'hero_section_links','6'),(11891,851,'_hero_section_links','field_5d5711cf21851'),(11892,851,'featured_faq_title','Solving for the future of cruising.'),(11893,851,'_featured_faq_title','field_5d57145bc652e'),(11894,851,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(11895,851,'_featured_faq_description','field_5d57146bc652f'),(11896,851,'featured_faq_link','http://royaldigital.labcp.co/'),(11897,851,'_featured_faq_link','field_5d57147ec6530'),(11898,851,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(11899,851,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(11900,851,'popular_features_links_0_popular_features_link_title','Ships'),(11901,851,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(11902,851,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(11903,851,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(11904,851,'popular_features_links_1_popular_features_link_title','Check-in'),(11905,851,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(11906,851,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(11907,851,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(11908,851,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(11909,851,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(11910,851,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(11911,851,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(11912,851,'popular_features_links_3_popular_features_link_title','Guest Account'),(11913,851,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(11914,851,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(11915,851,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(11916,851,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(11917,851,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(11918,851,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(11919,851,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(11920,851,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(11921,851,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(11922,851,'popular_features_links','6'),(11923,851,'_popular_features_links','field_5d5714d1c6531'),(11928,852,'author_news','2'),(11929,852,'_author_news','field_5d3083fbbea51'),(11930,852,'select_brand','88'),(11931,852,'_select_brand','field_5d3084d736561'),(11932,852,'featured_post','1'),(11933,852,'_featured_post','field_5d30852c7c4e7'),(11934,852,'legend_featured_image','Neque porro quisquam est'),(11935,852,'_legend_featured_image','field_5d39e9d4ef8f8'),(11936,852,'select_posts_related',''),(11937,852,'_select_posts_related','field_5d3afdcff5db7'),(11938,852,'archive_audio_mp3',''),(11939,852,'_archive_audio_mp3','field_5d4989a80007c'),(11940,852,'url_video',''),(11941,852,'_url_video','field_5d49897521f43'),(11946,853,'author_news','2'),(11947,853,'_author_news','field_5d3083fbbea51'),(11948,853,'select_brand','88'),(11949,853,'_select_brand','field_5d3084d736561'),(11950,853,'featured_post','1'),(11951,853,'_featured_post','field_5d30852c7c4e7'),(11952,853,'legend_featured_image','Neque porro quisquam est'),(11953,853,'_legend_featured_image','field_5d39e9d4ef8f8'),(11954,853,'select_posts_related',''),(11955,853,'_select_posts_related','field_5d3afdcff5db7'),(11956,853,'archive_audio_mp3',''),(11957,853,'_archive_audio_mp3','field_5d4989a80007c'),(11958,853,'url_video',''),(11959,853,'_url_video','field_5d49897521f43'),(11968,854,'author_news','2'),(11969,854,'_author_news','field_5d3083fbbea51'),(11970,854,'select_brand','88'),(11971,854,'_select_brand','field_5d3084d736561'),(11972,854,'featured_post','1'),(11973,854,'_featured_post','field_5d30852c7c4e7'),(11974,854,'legend_featured_image','Neque porro quisquam est'),(11975,854,'_legend_featured_image','field_5d39e9d4ef8f8'),(11976,854,'select_posts_related',''),(11977,854,'_select_posts_related','field_5d3afdcff5db7'),(11978,854,'archive_audio_mp3',''),(11979,854,'_archive_audio_mp3','field_5d4989a80007c'),(11980,854,'url_video',''),(11981,854,'_url_video','field_5d49897521f43'),(11982,855,'title_hero','Solving for the<br> digital future of<br> cruising'),(11983,855,'_title_hero','field_5d2cbfcfc7b2b'),(11984,855,'title_quote','Tech that'),(11985,855,'_title_quote','field_5d2cc09b51dfa'),(11986,855,'title_strong_quote','ships'),(11987,855,'_title_strong_quote','field_5d2cc0db51dfc'),(11988,855,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(11989,855,'_description_quote','field_5d2cc0a851dfb'),(11990,855,'imagem_quote','45'),(11991,855,'_imagem_quote','field_5d2cc0ed51dfd'),(11992,855,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(11993,855,'_description_blockquote','field_5d2cc22c9da9a'),(11994,855,'author_blockquote','Richard Fain, in an interview with'),(11995,855,'_author_blockquote','field_5d2cc25a9da9b'),(11996,855,'company','TechRepublic'),(11997,855,'_company','field_5d2cc2769da9c'),(11998,855,'company_blockquote','TechRepublic'),(11999,855,'_company_blockquote','field_5d2cc2769da9c'),(12000,855,'title_featured_i','Tech Edge'),(12001,855,'_title_featured_i','field_5d2cc41890f84'),(12002,855,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(12003,855,'_description_featured_i','field_5d2cc42890f85'),(12004,855,'seletc_type_link_featured_i','Link'),(12005,855,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12006,855,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(12007,855,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12008,855,'imagem_featured_i','61'),(12009,855,'_imagem_featured_i','field_5d2cc71559443'),(12010,855,'title_info_numbers','Digital by<br> the numbers'),(12011,855,'_title_info_numbers','field_5d2cc7e517635'),(12012,855,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12013,855,'_description_info_number','field_5d2cc7f817636'),(12014,855,'app_downloads','2.7M'),(12015,855,'_app_downloads','field_5d2cc83e17637'),(12016,855,'active_users','900K'),(12017,855,'_active_users','field_5d2cc84617638'),(12018,855,'average_ios_rating','4.6'),(12019,855,'_average_ios_rating','field_5d2cc85217639'),(12020,855,'crew_checkins','14k'),(12021,855,'_crew_checkins','field_5d2cc8631763a'),(12022,855,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(12023,855,'_title_featured_ii','field_5d2cc9741153c'),(12024,855,'description_featured_ii',''),(12025,855,'_description_featured_ii','field_5d2cc97e1153d'),(12026,855,'imagem_featured_ii','77'),(12027,855,'_imagem_featured_ii','field_5d2cc98c1153e'),(12028,855,'seletc_type_link_featured_ii','Link'),(12029,855,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12030,855,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(12031,855,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12032,855,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12033,855,'_title_featured_iii','field_5d2ccafff022a'),(12034,855,'description_featured_iii',''),(12035,855,'_description_featured_iii','field_5d2ccb0cf022b'),(12036,855,'imagem_featured_iii','85'),(12037,855,'_imagem_featured_iii','field_5d2ccb21f022c'),(12038,855,'seletc_type_link_featured_iii','Vídeo'),(12039,855,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12040,855,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12041,855,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12042,855,'subtitle_hero','Our guests often ask…'),(12043,855,'_subtitle_hero','field_5d5711764ff01'),(12044,855,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12045,855,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12046,855,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12047,855,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12048,855,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12049,855,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12050,855,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12051,855,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12052,855,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12053,855,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12054,855,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12055,855,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12056,855,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12057,855,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12058,855,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12059,855,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12060,855,'hero_section_links_4_hero_section_link',''),(12061,855,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12062,855,'hero_section_links_4_hero_section_link_title',''),(12063,855,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12064,855,'hero_section_links_5_hero_section_link',''),(12065,855,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12066,855,'hero_section_links_5_hero_section_link_title',''),(12067,855,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12068,855,'hero_section_links','6'),(12069,855,'_hero_section_links','field_5d5711cf21851'),(12070,855,'featured_faq_title','Solving for the future of cruising.'),(12071,855,'_featured_faq_title','field_5d57145bc652e'),(12072,855,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12073,855,'_featured_faq_description','field_5d57146bc652f'),(12074,855,'featured_faq_link','http://royaldigital.labcp.co/'),(12075,855,'_featured_faq_link','field_5d57147ec6530'),(12076,855,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12077,855,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12078,855,'popular_features_links_0_popular_features_link_title','Ships'),(12079,855,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12080,855,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12081,855,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12082,855,'popular_features_links_1_popular_features_link_title','Check-in'),(12083,855,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12084,855,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12085,855,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12086,855,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12087,855,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12088,855,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12089,855,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12090,855,'popular_features_links_3_popular_features_link_title','Guest Account'),(12091,855,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12092,855,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12093,855,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12094,855,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12095,855,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12096,855,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12097,855,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12098,855,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12099,855,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12100,855,'popular_features_links','6'),(12101,855,'_popular_features_links','field_5d5714d1c6531'),(12102,856,'title_hero','Solving for the<br> digital future of<br> cruising'),(12103,856,'_title_hero','field_5d2cbfcfc7b2b'),(12104,856,'title_quote','Tech that'),(12105,856,'_title_quote','field_5d2cc09b51dfa'),(12106,856,'title_strong_quote','ships'),(12107,856,'_title_strong_quote','field_5d2cc0db51dfc'),(12108,856,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12109,856,'_description_quote','field_5d2cc0a851dfb'),(12110,856,'imagem_quote','45'),(12111,856,'_imagem_quote','field_5d2cc0ed51dfd'),(12112,856,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12113,856,'_description_blockquote','field_5d2cc22c9da9a'),(12114,856,'author_blockquote','Richard Fain, in an interview with'),(12115,856,'_author_blockquote','field_5d2cc25a9da9b'),(12116,856,'company','TechRepublic'),(12117,856,'_company','field_5d2cc2769da9c'),(12118,856,'company_blockquote','TechRepublic'),(12119,856,'_company_blockquote','field_5d2cc2769da9c'),(12120,856,'title_featured_i','Tech Edge'),(12121,856,'_title_featured_i','field_5d2cc41890f84'),(12122,856,'description_featured_i','New standard in luxury cruise ships sets the digital pace.'),(12123,856,'_description_featured_i','field_5d2cc42890f85'),(12124,856,'seletc_type_link_featured_i','Link'),(12125,856,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12126,856,'link_news_or_link_video_featured_i','https://arpost.co/2019/01/17/the-celebrity-edge-using-ar-technology-to-enhance-customer-experience/'),(12127,856,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12128,856,'imagem_featured_i','61'),(12129,856,'_imagem_featured_i','field_5d2cc71559443'),(12130,856,'title_info_numbers','Digital by<br> the numbers'),(12131,856,'_title_info_numbers','field_5d2cc7e517635'),(12132,856,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12133,856,'_description_info_number','field_5d2cc7f817636'),(12134,856,'app_downloads','2.7M'),(12135,856,'_app_downloads','field_5d2cc83e17637'),(12136,856,'active_users','900K'),(12137,856,'_active_users','field_5d2cc84617638'),(12138,856,'average_ios_rating','4.6'),(12139,856,'_average_ios_rating','field_5d2cc85217639'),(12140,856,'crew_checkins','14k'),(12141,856,'_crew_checkins','field_5d2cc8631763a'),(12142,856,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(12143,856,'_title_featured_ii','field_5d2cc9741153c'),(12144,856,'description_featured_ii',''),(12145,856,'_description_featured_ii','field_5d2cc97e1153d'),(12146,856,'imagem_featured_ii','77'),(12147,856,'_imagem_featured_ii','field_5d2cc98c1153e'),(12148,856,'seletc_type_link_featured_ii','Link'),(12149,856,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12150,856,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(12151,856,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12152,856,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12153,856,'_title_featured_iii','field_5d2ccafff022a'),(12154,856,'description_featured_iii',''),(12155,856,'_description_featured_iii','field_5d2ccb0cf022b'),(12156,856,'imagem_featured_iii','85'),(12157,856,'_imagem_featured_iii','field_5d2ccb21f022c'),(12158,856,'seletc_type_link_featured_iii','Vídeo'),(12159,856,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12160,856,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12161,856,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12162,856,'subtitle_hero','Our guests often ask…'),(12163,856,'_subtitle_hero','field_5d5711764ff01'),(12164,856,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12165,856,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12166,856,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12167,856,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12168,856,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12169,856,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12170,856,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12171,856,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12172,856,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12173,856,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12174,856,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12175,856,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12176,856,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12177,856,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12178,856,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12179,856,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12180,856,'hero_section_links_4_hero_section_link',''),(12181,856,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12182,856,'hero_section_links_4_hero_section_link_title',''),(12183,856,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12184,856,'hero_section_links_5_hero_section_link',''),(12185,856,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12186,856,'hero_section_links_5_hero_section_link_title',''),(12187,856,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12188,856,'hero_section_links','6'),(12189,856,'_hero_section_links','field_5d5711cf21851'),(12190,856,'featured_faq_title','Solving the digital future of cruising.'),(12191,856,'_featured_faq_title','field_5d57145bc652e'),(12192,856,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12193,856,'_featured_faq_description','field_5d57146bc652f'),(12194,856,'featured_faq_link','http://royaldigital.labcp.co/'),(12195,856,'_featured_faq_link','field_5d57147ec6530'),(12196,856,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12197,856,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12198,856,'popular_features_links_0_popular_features_link_title','Ships'),(12199,856,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12200,856,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12201,856,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12202,856,'popular_features_links_1_popular_features_link_title','Check-in'),(12203,856,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12204,856,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12205,856,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12206,856,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12207,856,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12208,856,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12209,856,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12210,856,'popular_features_links_3_popular_features_link_title','Guest Account'),(12211,856,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12212,856,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12213,856,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12214,856,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12215,856,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12216,856,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12217,856,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12218,856,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12219,856,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12220,856,'popular_features_links','6'),(12221,856,'_popular_features_links','field_5d5714d1c6531'),(12222,857,'title_hero','Solving for the<br> digital future of<br> cruising'),(12223,857,'_title_hero','field_5d2cbfcfc7b2b'),(12224,857,'title_quote','Tech that'),(12225,857,'_title_quote','field_5d2cc09b51dfa'),(12226,857,'title_strong_quote','ships'),(12227,857,'_title_strong_quote','field_5d2cc0db51dfc'),(12228,857,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12229,857,'_description_quote','field_5d2cc0a851dfb'),(12230,857,'imagem_quote','45'),(12231,857,'_imagem_quote','field_5d2cc0ed51dfd'),(12232,857,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12233,857,'_description_blockquote','field_5d2cc22c9da9a'),(12234,857,'author_blockquote','Richard Fain, in an interview with'),(12235,857,'_author_blockquote','field_5d2cc25a9da9b'),(12236,857,'company','TechRepublic'),(12237,857,'_company','field_5d2cc2769da9c'),(12238,857,'company_blockquote','TechRepublic'),(12239,857,'_company_blockquote','field_5d2cc2769da9c'),(12240,857,'title_featured_i','Self serving'),(12241,857,'_title_featured_i','field_5d2cc41890f84'),(12242,857,'description_featured_i','All you need to begin the check-in process is a smile.'),(12243,857,'_description_featured_i','field_5d2cc42890f85'),(12244,857,'seletc_type_link_featured_i','Link'),(12245,857,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12246,857,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(12247,857,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12248,857,'imagem_featured_i','544'),(12249,857,'_imagem_featured_i','field_5d2cc71559443'),(12250,857,'title_info_numbers','Digital by<br> the numbers'),(12251,857,'_title_info_numbers','field_5d2cc7e517635'),(12252,857,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12253,857,'_description_info_number','field_5d2cc7f817636'),(12254,857,'app_downloads','2.7M'),(12255,857,'_app_downloads','field_5d2cc83e17637'),(12256,857,'active_users','900K'),(12257,857,'_active_users','field_5d2cc84617638'),(12258,857,'average_ios_rating','4.6'),(12259,857,'_average_ios_rating','field_5d2cc85217639'),(12260,857,'crew_checkins','14k'),(12261,857,'_crew_checkins','field_5d2cc8631763a'),(12262,857,'title_featured_ii','Tech in the kitchen serves up positive environmental impact'),(12263,857,'_title_featured_ii','field_5d2cc9741153c'),(12264,857,'description_featured_ii',''),(12265,857,'_description_featured_ii','field_5d2cc97e1153d'),(12266,857,'imagem_featured_ii','77'),(12267,857,'_imagem_featured_ii','field_5d2cc98c1153e'),(12268,857,'seletc_type_link_featured_ii','Link'),(12269,857,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12270,857,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(12271,857,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12272,857,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12273,857,'_title_featured_iii','field_5d2ccafff022a'),(12274,857,'description_featured_iii',''),(12275,857,'_description_featured_iii','field_5d2ccb0cf022b'),(12276,857,'imagem_featured_iii','85'),(12277,857,'_imagem_featured_iii','field_5d2ccb21f022c'),(12278,857,'seletc_type_link_featured_iii','Vídeo'),(12279,857,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12280,857,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12281,857,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12282,857,'subtitle_hero','Our guests often ask…'),(12283,857,'_subtitle_hero','field_5d5711764ff01'),(12284,857,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12285,857,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12286,857,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12287,857,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12288,857,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12289,857,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12290,857,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12291,857,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12292,857,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12293,857,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12294,857,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12295,857,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12296,857,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12297,857,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12298,857,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12299,857,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12300,857,'hero_section_links_4_hero_section_link',''),(12301,857,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12302,857,'hero_section_links_4_hero_section_link_title',''),(12303,857,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12304,857,'hero_section_links_5_hero_section_link',''),(12305,857,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12306,857,'hero_section_links_5_hero_section_link_title',''),(12307,857,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12308,857,'hero_section_links','6'),(12309,857,'_hero_section_links','field_5d5711cf21851'),(12310,857,'featured_faq_title','Solving the digital future of cruising.'),(12311,857,'_featured_faq_title','field_5d57145bc652e'),(12312,857,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12313,857,'_featured_faq_description','field_5d57146bc652f'),(12314,857,'featured_faq_link','http://royaldigital.labcp.co/'),(12315,857,'_featured_faq_link','field_5d57147ec6530'),(12316,857,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12317,857,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12318,857,'popular_features_links_0_popular_features_link_title','Ships'),(12319,857,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12320,857,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12321,857,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12322,857,'popular_features_links_1_popular_features_link_title','Check-in'),(12323,857,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12324,857,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12325,857,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12326,857,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12327,857,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12328,857,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12329,857,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12330,857,'popular_features_links_3_popular_features_link_title','Guest Account'),(12331,857,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12332,857,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12333,857,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12334,857,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12335,857,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12336,857,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12337,857,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12338,857,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12339,857,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12340,857,'popular_features_links','6'),(12341,857,'_popular_features_links','field_5d5714d1c6531'),(12342,858,'hero_section_title','Frequenty asked questions'),(12343,858,'_hero_section_title','field_5d55a345f8cdb'),(12344,858,'hero_section_image','604'),(12345,858,'_hero_section_image','field_5d55a424f8cdc'),(12346,858,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(12347,858,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(12348,858,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(12349,858,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(12350,858,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(12351,858,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(12352,858,'hero_section_links_1_hero_section_link_title','What is Expedited Arrival?'),(12353,858,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(12354,858,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(12355,858,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(12356,858,'hero_section_links_2_hero_section_link_title','How soon can I check in after booking?'),(12357,858,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(12358,858,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(12359,858,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(12360,858,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(12361,858,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(12362,858,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(12363,858,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(12364,858,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(12365,858,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(12366,858,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(12367,858,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(12368,858,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(12369,858,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(12370,858,'hero_section_links','6'),(12371,858,'_hero_section_links','field_5d55a451f8cdd'),(12372,858,'popular_features_title','Popular Features'),(12373,858,'_popular_features_title','field_5d55abb7ffa2d'),(12374,858,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(12375,858,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(12376,858,'popular_features_links_0_popular_features_link_title','Ships'),(12377,858,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(12378,858,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(12379,858,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(12380,858,'popular_features_links_1_popular_features_link_title','Guest Account'),(12381,858,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(12382,858,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(12383,858,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(12384,858,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(12385,858,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(12386,858,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(12387,858,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(12388,858,'popular_features_links_3_popular_features_link_title','Check-in'),(12389,858,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(12390,858,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(12391,858,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(12392,858,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(12393,858,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(12394,858,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(12395,858,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(12396,858,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(12397,858,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(12398,858,'popular_features_links','6'),(12399,858,'_popular_features_links','field_5d55ac6b2b75e'),(12400,858,'helpful_articles_title','Helpful articles and how-to\'s'),(12401,858,'_helpful_articles_title','field_5d55b136c34eb'),(12402,858,'post_image_right_title','Solving for the future of cruising.'),(12403,858,'_post_image_right_title','field_5d55b49247b3a'),(12404,858,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12405,858,'_post_image_right_description','field_5d55b49b47b3b'),(12406,858,'post_image_right_title_link','Learn more'),(12407,858,'_post_image_right_title_link','field_5d55b4a747b3c'),(12408,858,'post_image_right_link','http://royaldigital.labcp.co'),(12409,858,'_post_image_right_link','field_5d55b4b247b3d'),(12410,858,'post_image_right_image','527'),(12411,858,'_post_image_right_image','field_5d55b4be47b3e'),(12412,858,'post_image_left_title','Learn how to plan your vacation in minutes'),(12413,858,'_post_image_left_title','field_5d55b69a7e8a7'),(12414,858,'post_image_left_link','https://vimeo.com/'),(12415,858,'_post_image_left_link','field_5d55b6a47e8a8'),(12416,858,'post_image_left_image','536'),(12417,858,'_post_image_left_image','field_5d55b6b47e8a9'),(12418,858,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(12419,858,'_select_posts','field_5d55ba1e32eec'),(12420,858,'seletc_type_link','Vídeo'),(12421,858,'_seletc_type_link','field_5d57093fdc431'),(12422,858,'post_image_left_id_video','344894438'),(12423,858,'_post_image_left_id_video','field_5d570987dc432'),(12424,859,'author_news',''),(12425,859,'_author_news','field_5d3083fbbea51'),(12426,859,'select_brand',''),(12427,859,'_select_brand','field_5d3084d736561'),(12428,859,'featured_post','0'),(12429,859,'_featured_post','field_5d30852c7c4e7'),(12430,859,'legend_featured_image',''),(12431,859,'_legend_featured_image','field_5d39e9d4ef8f8'),(12432,859,'select_posts_related',''),(12433,859,'_select_posts_related','field_5d3afdcff5db7'),(12438,860,'title_hero','Solving for the<br> digital future of<br> cruising'),(12439,860,'_title_hero','field_5d2cbfcfc7b2b'),(12440,860,'title_quote','Tech that'),(12441,860,'_title_quote','field_5d2cc09b51dfa'),(12442,860,'title_strong_quote','ships'),(12443,860,'_title_strong_quote','field_5d2cc0db51dfc'),(12444,860,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12445,860,'_description_quote','field_5d2cc0a851dfb'),(12446,860,'imagem_quote','45'),(12447,860,'_imagem_quote','field_5d2cc0ed51dfd'),(12448,860,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12449,860,'_description_blockquote','field_5d2cc22c9da9a'),(12450,860,'author_blockquote','Richard Fain, in an interview with'),(12451,860,'_author_blockquote','field_5d2cc25a9da9b'),(12452,860,'company','TechRepublic'),(12453,860,'_company','field_5d2cc2769da9c'),(12454,860,'company_blockquote','TechRepublic'),(12455,860,'_company_blockquote','field_5d2cc2769da9c'),(12456,860,'title_featured_i','Self serving'),(12457,860,'_title_featured_i','field_5d2cc41890f84'),(12458,860,'description_featured_i','All you need to begin the check-in process is a smile.'),(12459,860,'_description_featured_i','field_5d2cc42890f85'),(12460,860,'seletc_type_link_featured_i','Link'),(12461,860,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12462,860,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(12463,860,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12464,860,'imagem_featured_i','544'),(12465,860,'_imagem_featured_i','field_5d2cc71559443'),(12466,860,'title_info_numbers','Digital by<br> the numbers'),(12467,860,'_title_info_numbers','field_5d2cc7e517635'),(12468,860,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12469,860,'_description_info_number','field_5d2cc7f817636'),(12470,860,'app_downloads','3M'),(12471,860,'_app_downloads','field_5d2cc83e17637'),(12472,860,'active_users','1M'),(12473,860,'_active_users','field_5d2cc84617638'),(12474,860,'average_ios_rating','4.6'),(12475,860,'_average_ios_rating','field_5d2cc85217639'),(12476,860,'crew_checkins','14k'),(12477,860,'_crew_checkins','field_5d2cc8631763a'),(12478,860,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(12479,860,'_title_featured_ii','field_5d2cc9741153c'),(12480,860,'description_featured_ii',''),(12481,860,'_description_featured_ii','field_5d2cc97e1153d'),(12482,860,'imagem_featured_ii','45'),(12483,860,'_imagem_featured_ii','field_5d2cc98c1153e'),(12484,860,'seletc_type_link_featured_ii','Link'),(12485,860,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12486,860,'link_news_or_link_video_featured_ii','https://www.forbes.com/sites/bernardmarr/2019/05/10/the-fascinating-ways-royal-caribbean-uses-facial-recognition-and-machine-vision/#4b08e6af1524'),(12487,860,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12488,860,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12489,860,'_title_featured_iii','field_5d2ccafff022a'),(12490,860,'description_featured_iii',''),(12491,860,'_description_featured_iii','field_5d2ccb0cf022b'),(12492,860,'imagem_featured_iii','85'),(12493,860,'_imagem_featured_iii','field_5d2ccb21f022c'),(12494,860,'seletc_type_link_featured_iii','Vídeo'),(12495,860,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12496,860,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12497,860,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12498,860,'subtitle_hero','Our guests often ask…'),(12499,860,'_subtitle_hero','field_5d5711764ff01'),(12500,860,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12501,860,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12502,860,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12503,860,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12504,860,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12505,860,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12506,860,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12507,860,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12508,860,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12509,860,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12510,860,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12511,860,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12512,860,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12513,860,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12514,860,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12515,860,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12516,860,'hero_section_links_4_hero_section_link',''),(12517,860,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12518,860,'hero_section_links_4_hero_section_link_title',''),(12519,860,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12520,860,'hero_section_links_5_hero_section_link',''),(12521,860,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12522,860,'hero_section_links_5_hero_section_link_title',''),(12523,860,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12524,860,'hero_section_links','6'),(12525,860,'_hero_section_links','field_5d5711cf21851'),(12526,860,'featured_faq_title','Solving the digital future of cruising.'),(12527,860,'_featured_faq_title','field_5d57145bc652e'),(12528,860,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12529,860,'_featured_faq_description','field_5d57146bc652f'),(12530,860,'featured_faq_link','http://royaldigital.labcp.co/'),(12531,860,'_featured_faq_link','field_5d57147ec6530'),(12532,860,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12533,860,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12534,860,'popular_features_links_0_popular_features_link_title','Ships'),(12535,860,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12536,860,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12537,860,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12538,860,'popular_features_links_1_popular_features_link_title','Check-in'),(12539,860,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12540,860,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12541,860,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12542,860,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12543,860,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12544,860,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12545,860,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12546,860,'popular_features_links_3_popular_features_link_title','Guest Account'),(12547,860,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12548,860,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12549,860,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12550,860,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12551,860,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12552,860,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12553,860,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12554,860,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12555,860,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12556,860,'popular_features_links','6'),(12557,860,'_popular_features_links','field_5d5714d1c6531'),(12558,861,'title_hero','Solving for the<br> digital future of<br> cruising'),(12559,861,'_title_hero','field_5d2cbfcfc7b2b'),(12560,861,'title_quote','Tech that'),(12561,861,'_title_quote','field_5d2cc09b51dfa'),(12562,861,'title_strong_quote','ships'),(12563,861,'_title_strong_quote','field_5d2cc0db51dfc'),(12564,861,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12565,861,'_description_quote','field_5d2cc0a851dfb'),(12566,861,'imagem_quote','45'),(12567,861,'_imagem_quote','field_5d2cc0ed51dfd'),(12568,861,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12569,861,'_description_blockquote','field_5d2cc22c9da9a'),(12570,861,'author_blockquote','Richard Fain, in an interview with'),(12571,861,'_author_blockquote','field_5d2cc25a9da9b'),(12572,861,'company','TechRepublic'),(12573,861,'_company','field_5d2cc2769da9c'),(12574,861,'company_blockquote','TechRepublic'),(12575,861,'_company_blockquote','field_5d2cc2769da9c'),(12576,861,'title_featured_i','Self serving'),(12577,861,'_title_featured_i','field_5d2cc41890f84'),(12578,861,'description_featured_i','All you need to begin the check-in process is a smile.'),(12579,861,'_description_featured_i','field_5d2cc42890f85'),(12580,861,'seletc_type_link_featured_i','Link'),(12581,861,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12582,861,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(12583,861,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12584,861,'imagem_featured_i','544'),(12585,861,'_imagem_featured_i','field_5d2cc71559443'),(12586,861,'title_info_numbers','Digital by<br> the numbers'),(12587,861,'_title_info_numbers','field_5d2cc7e517635'),(12588,861,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12589,861,'_description_info_number','field_5d2cc7f817636'),(12590,861,'app_downloads','3M'),(12591,861,'_app_downloads','field_5d2cc83e17637'),(12592,861,'active_users','1M'),(12593,861,'_active_users','field_5d2cc84617638'),(12594,861,'average_ios_rating','4.6'),(12595,861,'_average_ios_rating','field_5d2cc85217639'),(12596,861,'crew_checkins','14k'),(12597,861,'_crew_checkins','field_5d2cc8631763a'),(12598,861,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(12599,861,'_title_featured_ii','field_5d2cc9741153c'),(12600,861,'description_featured_ii',''),(12601,861,'_description_featured_ii','field_5d2cc97e1153d'),(12602,861,'imagem_featured_ii','45'),(12603,861,'_imagem_featured_ii','field_5d2cc98c1153e'),(12604,861,'seletc_type_link_featured_ii','Link'),(12605,861,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12606,861,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(12607,861,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12608,861,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12609,861,'_title_featured_iii','field_5d2ccafff022a'),(12610,861,'description_featured_iii',''),(12611,861,'_description_featured_iii','field_5d2ccb0cf022b'),(12612,861,'imagem_featured_iii','85'),(12613,861,'_imagem_featured_iii','field_5d2ccb21f022c'),(12614,861,'seletc_type_link_featured_iii','Vídeo'),(12615,861,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12616,861,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12617,861,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12618,861,'subtitle_hero','Our guests often ask…'),(12619,861,'_subtitle_hero','field_5d5711764ff01'),(12620,861,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12621,861,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12622,861,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12623,861,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12624,861,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12625,861,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12626,861,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12627,861,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12628,861,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12629,861,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12630,861,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12631,861,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12632,861,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12633,861,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12634,861,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12635,861,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12636,861,'hero_section_links_4_hero_section_link',''),(12637,861,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12638,861,'hero_section_links_4_hero_section_link_title',''),(12639,861,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12640,861,'hero_section_links_5_hero_section_link',''),(12641,861,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12642,861,'hero_section_links_5_hero_section_link_title',''),(12643,861,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12644,861,'hero_section_links','6'),(12645,861,'_hero_section_links','field_5d5711cf21851'),(12646,861,'featured_faq_title','Solving the digital future of cruising.'),(12647,861,'_featured_faq_title','field_5d57145bc652e'),(12648,861,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12649,861,'_featured_faq_description','field_5d57146bc652f'),(12650,861,'featured_faq_link','http://royaldigital.labcp.co/'),(12651,861,'_featured_faq_link','field_5d57147ec6530'),(12652,861,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12653,861,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12654,861,'popular_features_links_0_popular_features_link_title','Ships'),(12655,861,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12656,861,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12657,861,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12658,861,'popular_features_links_1_popular_features_link_title','Check-in'),(12659,861,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12660,861,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12661,861,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12662,861,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12663,861,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12664,861,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12665,861,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12666,861,'popular_features_links_3_popular_features_link_title','Guest Account'),(12667,861,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12668,861,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12669,861,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12670,861,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12671,861,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12672,861,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12673,861,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12674,861,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12675,861,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12676,861,'popular_features_links','6'),(12677,861,'_popular_features_links','field_5d5714d1c6531'),(12678,862,'_wp_attached_file','2019/09/Screen-Shot-2019-09-06-at-4.40.23-PM.png'),(12679,862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1786;s:6:\"height\";i:846;s:4:\"file\";s:48:\"2019/09/Screen-Shot-2019-09-06-at-4.40.23-PM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-768x364.png\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1024x485.png\";s:5:\"width\";i:1024;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-06-at-4.40.23-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-06-at-4.40.23-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(12680,863,'title_hero','Solving for the<br> digital future of<br> cruising'),(12681,863,'_title_hero','field_5d2cbfcfc7b2b'),(12682,863,'title_quote','Tech that'),(12683,863,'_title_quote','field_5d2cc09b51dfa'),(12684,863,'title_strong_quote','ships'),(12685,863,'_title_strong_quote','field_5d2cc0db51dfc'),(12686,863,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12687,863,'_description_quote','field_5d2cc0a851dfb'),(12688,863,'imagem_quote','45'),(12689,863,'_imagem_quote','field_5d2cc0ed51dfd'),(12690,863,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12691,863,'_description_blockquote','field_5d2cc22c9da9a'),(12692,863,'author_blockquote','Richard Fain, in an interview with'),(12693,863,'_author_blockquote','field_5d2cc25a9da9b'),(12694,863,'company','TechRepublic'),(12695,863,'_company','field_5d2cc2769da9c'),(12696,863,'company_blockquote','TechRepublic'),(12697,863,'_company_blockquote','field_5d2cc2769da9c'),(12698,863,'title_featured_i','Self serving'),(12699,863,'_title_featured_i','field_5d2cc41890f84'),(12700,863,'description_featured_i','All you need to begin the check-in process is a smile.'),(12701,863,'_description_featured_i','field_5d2cc42890f85'),(12702,863,'seletc_type_link_featured_i','Link'),(12703,863,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(12704,863,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(12705,863,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(12706,863,'imagem_featured_i','544'),(12707,863,'_imagem_featured_i','field_5d2cc71559443'),(12708,863,'title_info_numbers','Digital by<br> the numbers'),(12709,863,'_title_info_numbers','field_5d2cc7e517635'),(12710,863,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(12711,863,'_description_info_number','field_5d2cc7f817636'),(12712,863,'app_downloads','3M'),(12713,863,'_app_downloads','field_5d2cc83e17637'),(12714,863,'active_users','1M'),(12715,863,'_active_users','field_5d2cc84617638'),(12716,863,'average_ios_rating','4.6'),(12717,863,'_average_ios_rating','field_5d2cc85217639'),(12718,863,'crew_checkins','14k'),(12719,863,'_crew_checkins','field_5d2cc8631763a'),(12720,863,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(12721,863,'_title_featured_ii','field_5d2cc9741153c'),(12722,863,'description_featured_ii',''),(12723,863,'_description_featured_ii','field_5d2cc97e1153d'),(12724,863,'imagem_featured_ii','45'),(12725,863,'_imagem_featured_ii','field_5d2cc98c1153e'),(12726,863,'seletc_type_link_featured_ii','Link'),(12727,863,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(12728,863,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(12729,863,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(12730,863,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(12731,863,'_title_featured_iii','field_5d2ccafff022a'),(12732,863,'description_featured_iii',''),(12733,863,'_description_featured_iii','field_5d2ccb0cf022b'),(12734,863,'imagem_featured_iii','862'),(12735,863,'_imagem_featured_iii','field_5d2ccb21f022c'),(12736,863,'seletc_type_link_featured_iii','Vídeo'),(12737,863,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(12738,863,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(12739,863,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(12740,863,'subtitle_hero','Our guests often ask…'),(12741,863,'_subtitle_hero','field_5d5711764ff01'),(12742,863,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12743,863,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(12744,863,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(12745,863,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(12746,863,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(12747,863,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(12748,863,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(12749,863,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(12750,863,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(12751,863,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(12752,863,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(12753,863,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(12754,863,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(12755,863,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(12756,863,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(12757,863,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(12758,863,'hero_section_links_4_hero_section_link',''),(12759,863,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(12760,863,'hero_section_links_4_hero_section_link_title',''),(12761,863,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(12762,863,'hero_section_links_5_hero_section_link',''),(12763,863,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(12764,863,'hero_section_links_5_hero_section_link_title',''),(12765,863,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(12766,863,'hero_section_links','6'),(12767,863,'_hero_section_links','field_5d5711cf21851'),(12768,863,'featured_faq_title','Solving the digital future of cruising.'),(12769,863,'_featured_faq_title','field_5d57145bc652e'),(12770,863,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12771,863,'_featured_faq_description','field_5d57146bc652f'),(12772,863,'featured_faq_link','http://royaldigital.labcp.co/'),(12773,863,'_featured_faq_link','field_5d57147ec6530'),(12774,863,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(12775,863,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(12776,863,'popular_features_links_0_popular_features_link_title','Ships'),(12777,863,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(12778,863,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(12779,863,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(12780,863,'popular_features_links_1_popular_features_link_title','Check-in'),(12781,863,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(12782,863,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(12783,863,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(12784,863,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(12785,863,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(12786,863,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(12787,863,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(12788,863,'popular_features_links_3_popular_features_link_title','Guest Account'),(12789,863,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(12790,863,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(12791,863,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(12792,863,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(12793,863,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(12794,863,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(12795,863,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(12796,863,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(12797,863,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(12798,863,'popular_features_links','6'),(12799,863,'_popular_features_links','field_5d5714d1c6531'),(12800,864,'hero_section_title','Frequenty asked questions'),(12801,864,'_hero_section_title','field_5d55a345f8cdb'),(12802,864,'hero_section_image','604'),(12803,864,'_hero_section_image','field_5d55a424f8cdc'),(12804,864,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(12805,864,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(12806,864,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(12807,864,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(12808,864,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(12809,864,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(12810,864,'hero_section_links_1_hero_section_link_title','What is Expedited Arrival?'),(12811,864,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(12812,864,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(12813,864,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(12814,864,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(12815,864,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(12816,864,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(12817,864,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(12818,864,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(12819,864,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf');
INSERT INTO `wp_postmeta` VALUES (12820,864,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(12821,864,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(12822,864,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(12823,864,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(12824,864,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(12825,864,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(12826,864,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(12827,864,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(12828,864,'hero_section_links','6'),(12829,864,'_hero_section_links','field_5d55a451f8cdd'),(12830,864,'popular_features_title','Popular Features'),(12831,864,'_popular_features_title','field_5d55abb7ffa2d'),(12832,864,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(12833,864,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(12834,864,'popular_features_links_0_popular_features_link_title','Ships'),(12835,864,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(12836,864,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(12837,864,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(12838,864,'popular_features_links_1_popular_features_link_title','Guest Account'),(12839,864,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(12840,864,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(12841,864,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(12842,864,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(12843,864,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(12844,864,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(12845,864,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(12846,864,'popular_features_links_3_popular_features_link_title','Check-in'),(12847,864,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(12848,864,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(12849,864,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(12850,864,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(12851,864,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(12852,864,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(12853,864,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(12854,864,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(12855,864,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(12856,864,'popular_features_links','6'),(12857,864,'_popular_features_links','field_5d55ac6b2b75e'),(12858,864,'helpful_articles_title','Helpful articles and how-to\'s'),(12859,864,'_helpful_articles_title','field_5d55b136c34eb'),(12860,864,'post_image_right_title','Solving for the future of cruising.'),(12861,864,'_post_image_right_title','field_5d55b49247b3a'),(12862,864,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12863,864,'_post_image_right_description','field_5d55b49b47b3b'),(12864,864,'post_image_right_title_link','Learn more'),(12865,864,'_post_image_right_title_link','field_5d55b4a747b3c'),(12866,864,'post_image_right_link','http://royaldigital.labcp.co'),(12867,864,'_post_image_right_link','field_5d55b4b247b3d'),(12868,864,'post_image_right_image','527'),(12869,864,'_post_image_right_image','field_5d55b4be47b3e'),(12870,864,'post_image_left_title','Learn how to plan your vacation in minutes'),(12871,864,'_post_image_left_title','field_5d55b69a7e8a7'),(12872,864,'post_image_left_link','https://vimeo.com/'),(12873,864,'_post_image_left_link','field_5d55b6a47e8a8'),(12874,864,'post_image_left_image','536'),(12875,864,'_post_image_left_image','field_5d55b6b47e8a9'),(12876,864,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(12877,864,'_select_posts','field_5d55ba1e32eec'),(12878,864,'seletc_type_link','Vídeo'),(12879,864,'_seletc_type_link','field_5d57093fdc431'),(12880,864,'post_image_left_id_video','344894438'),(12881,864,'_post_image_left_id_video','field_5d570987dc432'),(12882,865,'hero_section_title','Frequenty asked questions'),(12883,865,'_hero_section_title','field_5d55a345f8cdb'),(12884,865,'hero_section_image','61'),(12885,865,'_hero_section_image','field_5d55a424f8cdc'),(12886,865,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(12887,865,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(12888,865,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(12889,865,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(12890,865,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(12891,865,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(12892,865,'hero_section_links_1_hero_section_link_title','What is Expedited Arrival?'),(12893,865,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(12894,865,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(12895,865,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(12896,865,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(12897,865,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(12898,865,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(12899,865,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(12900,865,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(12901,865,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(12902,865,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(12903,865,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(12904,865,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(12905,865,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(12906,865,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(12907,865,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(12908,865,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(12909,865,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(12910,865,'hero_section_links','6'),(12911,865,'_hero_section_links','field_5d55a451f8cdd'),(12912,865,'popular_features_title','Popular Features'),(12913,865,'_popular_features_title','field_5d55abb7ffa2d'),(12914,865,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co'),(12915,865,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(12916,865,'popular_features_links_0_popular_features_link_title','Ships'),(12917,865,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(12918,865,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co'),(12919,865,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(12920,865,'popular_features_links_1_popular_features_link_title','Guest Account'),(12921,865,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(12922,865,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co'),(12923,865,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(12924,865,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(12925,865,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(12926,865,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co'),(12927,865,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(12928,865,'popular_features_links_3_popular_features_link_title','Check-in'),(12929,865,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(12930,865,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co'),(12931,865,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(12932,865,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(12933,865,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(12934,865,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(12935,865,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(12936,865,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(12937,865,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(12938,865,'popular_features_links','6'),(12939,865,'_popular_features_links','field_5d55ac6b2b75e'),(12940,865,'helpful_articles_title','Helpful articles and how-to\'s'),(12941,865,'_helpful_articles_title','field_5d55b136c34eb'),(12942,865,'post_image_right_title','Solving for the future of cruising.'),(12943,865,'_post_image_right_title','field_5d55b49247b3a'),(12944,865,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(12945,865,'_post_image_right_description','field_5d55b49b47b3b'),(12946,865,'post_image_right_title_link','Learn more'),(12947,865,'_post_image_right_title_link','field_5d55b4a747b3c'),(12948,865,'post_image_right_link','http://royaldigital.labcp.co'),(12949,865,'_post_image_right_link','field_5d55b4b247b3d'),(12950,865,'post_image_right_image','527'),(12951,865,'_post_image_right_image','field_5d55b4be47b3e'),(12952,865,'post_image_left_title','Learn how to plan your vacation in minutes'),(12953,865,'_post_image_left_title','field_5d55b69a7e8a7'),(12954,865,'post_image_left_link','https://vimeo.com/'),(12955,865,'_post_image_left_link','field_5d55b6a47e8a8'),(12956,865,'post_image_left_image','536'),(12957,865,'_post_image_left_image','field_5d55b6b47e8a9'),(12958,865,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(12959,865,'_select_posts','field_5d55ba1e32eec'),(12960,865,'seletc_type_link','Vídeo'),(12961,865,'_seletc_type_link','field_5d57093fdc431'),(12962,865,'post_image_left_id_video','344894438'),(12963,865,'_post_image_left_id_video','field_5d570987dc432'),(12964,866,'_wp_attached_file','2019/09/Image-1.jpg'),(12965,866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2019/09/Image-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Image-1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"Image-1-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:20:\"Image-1-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:19:\"Image-1-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:20:\"Image-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:19:\"Image-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:19:\"Image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:20:\"Image-1-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:19:\"Image-1-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:19:\"Image-1-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:20:\"Image-1-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:19:\"Image-1-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12966,867,'author_news',''),(12967,867,'_author_news','field_5d3083fbbea51'),(12968,867,'select_brand',''),(12969,867,'_select_brand','field_5d3084d736561'),(12970,867,'featured_post','0'),(12971,867,'_featured_post','field_5d30852c7c4e7'),(12972,867,'legend_featured_image',''),(12973,867,'_legend_featured_image','field_5d39e9d4ef8f8'),(12974,867,'select_posts_related',''),(12975,867,'_select_posts_related','field_5d3afdcff5db7'),(12976,868,'_wp_attached_file','2019/09/ZY-Video-2019-07-11-00000080.00_00_05_05.Still002.jpg'),(12977,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:61:\"2019/09/ZY-Video-2019-07-11-00000080.00_00_05_05.Still002.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_05_05.Still002-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12978,869,'_wp_attached_file','2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332.jpg'),(12979,869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1814;s:6:\"height\";i:2160;s:4:\"file\";s:76:\"2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-252x300.jpg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-768x914.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:77:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:76:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12980,870,'_wp_attached_file','2019/09/ZY-Video-2019-07-11-00000080.00_00_28_18.Still003.jpg'),(12981,870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:61:\"2019/09/ZY-Video-2019-07-11-00000080.00_00_28_18.Still003.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_28_18.Still003-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12982,871,'title_hero','Solving for the<br> digital future of<br> cruising'),(12983,871,'_title_hero','field_5d2cbfcfc7b2b'),(12984,871,'title_quote','Tech that'),(12985,871,'_title_quote','field_5d2cc09b51dfa'),(12986,871,'title_strong_quote','ships'),(12987,871,'_title_strong_quote','field_5d2cc0db51dfc'),(12988,871,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(12989,871,'_description_quote','field_5d2cc0a851dfb'),(12990,871,'imagem_quote','45'),(12991,871,'_imagem_quote','field_5d2cc0ed51dfd'),(12992,871,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(12993,871,'_description_blockquote','field_5d2cc22c9da9a'),(12994,871,'author_blockquote','Richard Fain, in an interview with'),(12995,871,'_author_blockquote','field_5d2cc25a9da9b'),(12996,871,'company','TechRepublic'),(12997,871,'_company','field_5d2cc2769da9c'),(12998,871,'company_blockquote','TechRepublic'),(12999,871,'_company_blockquote','field_5d2cc2769da9c'),(13000,871,'title_featured_i','Self serving'),(13001,871,'_title_featured_i','field_5d2cc41890f84'),(13002,871,'description_featured_i','All you need to begin the check-in process is a smile.'),(13003,871,'_description_featured_i','field_5d2cc42890f85'),(13004,871,'seletc_type_link_featured_i','Link'),(13005,871,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(13006,871,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(13007,871,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(13008,871,'imagem_featured_i','361'),(13009,871,'_imagem_featured_i','field_5d2cc71559443'),(13010,871,'title_info_numbers','Digital by<br> the numbers'),(13011,871,'_title_info_numbers','field_5d2cc7e517635'),(13012,871,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(13013,871,'_description_info_number','field_5d2cc7f817636'),(13014,871,'app_downloads','3M'),(13015,871,'_app_downloads','field_5d2cc83e17637'),(13016,871,'active_users','1M'),(13017,871,'_active_users','field_5d2cc84617638'),(13018,871,'average_ios_rating','4.6'),(13019,871,'_average_ios_rating','field_5d2cc85217639'),(13020,871,'crew_checkins','14k'),(13021,871,'_crew_checkins','field_5d2cc8631763a'),(13022,871,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(13023,871,'_title_featured_ii','field_5d2cc9741153c'),(13024,871,'description_featured_ii',''),(13025,871,'_description_featured_ii','field_5d2cc97e1153d'),(13026,871,'imagem_featured_ii','45'),(13027,871,'_imagem_featured_ii','field_5d2cc98c1153e'),(13028,871,'seletc_type_link_featured_ii','Link'),(13029,871,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(13030,871,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(13031,871,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(13032,871,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(13033,871,'_title_featured_iii','field_5d2ccafff022a'),(13034,871,'description_featured_iii',''),(13035,871,'_description_featured_iii','field_5d2ccb0cf022b'),(13036,871,'imagem_featured_iii','862'),(13037,871,'_imagem_featured_iii','field_5d2ccb21f022c'),(13038,871,'seletc_type_link_featured_iii','Vídeo'),(13039,871,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(13040,871,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(13041,871,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(13042,871,'subtitle_hero','Our guests often ask…'),(13043,871,'_subtitle_hero','field_5d5711764ff01'),(13044,871,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13045,871,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(13046,871,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(13047,871,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(13048,871,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13049,871,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(13050,871,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(13051,871,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(13052,871,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/'),(13053,871,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(13054,871,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(13055,871,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(13056,871,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(13057,871,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(13058,871,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(13059,871,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(13060,871,'hero_section_links_4_hero_section_link',''),(13061,871,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(13062,871,'hero_section_links_4_hero_section_link_title',''),(13063,871,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(13064,871,'hero_section_links_5_hero_section_link',''),(13065,871,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(13066,871,'hero_section_links_5_hero_section_link_title',''),(13067,871,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(13068,871,'hero_section_links','6'),(13069,871,'_hero_section_links','field_5d5711cf21851'),(13070,871,'featured_faq_title','Solving the digital future of cruising.'),(13071,871,'_featured_faq_title','field_5d57145bc652e'),(13072,871,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13073,871,'_featured_faq_description','field_5d57146bc652f'),(13074,871,'featured_faq_link','http://royaldigital.labcp.co/'),(13075,871,'_featured_faq_link','field_5d57147ec6530'),(13076,871,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(13077,871,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(13078,871,'popular_features_links_0_popular_features_link_title','Ships'),(13079,871,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(13080,871,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(13081,871,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(13082,871,'popular_features_links_1_popular_features_link_title','Check-in'),(13083,871,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(13084,871,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(13085,871,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(13086,871,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(13087,871,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(13088,871,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(13089,871,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(13090,871,'popular_features_links_3_popular_features_link_title','Guest Account'),(13091,871,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(13092,871,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(13093,871,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(13094,871,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(13095,871,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(13096,871,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(13097,871,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(13098,871,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(13099,871,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(13100,871,'popular_features_links','6'),(13101,871,'_popular_features_links','field_5d5714d1c6531'),(13102,872,'hero_section_title','Frequenty asked questions'),(13103,872,'_hero_section_title','field_5d55a345f8cdb'),(13104,872,'hero_section_image','61'),(13105,872,'_hero_section_image','field_5d55a424f8cdc'),(13106,872,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(13107,872,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(13108,872,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(13109,872,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(13110,872,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(13111,872,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(13112,872,'hero_section_links_1_hero_section_link_title','What is Expedited Arrival?'),(13113,872,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(13114,872,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(13115,872,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(13116,872,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(13117,872,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(13118,872,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13119,872,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(13120,872,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(13121,872,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(13122,872,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13123,872,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(13124,872,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(13125,872,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(13126,872,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(13127,872,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(13128,872,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(13129,872,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(13130,872,'hero_section_links','6'),(13131,872,'_hero_section_links','field_5d55a451f8cdd'),(13132,872,'popular_features_title','Popular Features'),(13133,872,'_popular_features_title','field_5d55abb7ffa2d'),(13134,872,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(13135,872,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(13136,872,'popular_features_links_0_popular_features_link_title','Ships'),(13137,872,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(13138,872,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13139,872,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(13140,872,'popular_features_links_1_popular_features_link_title','Guest Account'),(13141,872,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(13142,872,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(13143,872,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(13144,872,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(13145,872,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(13146,872,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(13147,872,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(13148,872,'popular_features_links_3_popular_features_link_title','Check-in'),(13149,872,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(13150,872,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(13151,872,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(13152,872,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(13153,872,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(13154,872,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co'),(13155,872,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(13156,872,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(13157,872,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(13158,872,'popular_features_links','6'),(13159,872,'_popular_features_links','field_5d55ac6b2b75e'),(13160,872,'helpful_articles_title','Helpful articles and how-to\'s'),(13161,872,'_helpful_articles_title','field_5d55b136c34eb'),(13162,872,'post_image_right_title','Solving for the future of cruising.'),(13163,872,'_post_image_right_title','field_5d55b49247b3a'),(13164,872,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13165,872,'_post_image_right_description','field_5d55b49b47b3b'),(13166,872,'post_image_right_title_link','Learn more'),(13167,872,'_post_image_right_title_link','field_5d55b4a747b3c'),(13168,872,'post_image_right_link','http://royaldigital.labcp.co'),(13169,872,'_post_image_right_link','field_5d55b4b247b3d'),(13170,872,'post_image_right_image','527'),(13171,872,'_post_image_right_image','field_5d55b4be47b3e'),(13172,872,'post_image_left_title','Learn how to plan your vacation in minutes'),(13173,872,'_post_image_left_title','field_5d55b69a7e8a7'),(13174,872,'post_image_left_link','https://vimeo.com/'),(13175,872,'_post_image_left_link','field_5d55b6a47e8a8'),(13176,872,'post_image_left_image','536'),(13177,872,'_post_image_left_image','field_5d55b6b47e8a9'),(13178,872,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(13179,872,'_select_posts','field_5d55ba1e32eec'),(13180,872,'seletc_type_link','Vídeo'),(13181,872,'_seletc_type_link','field_5d57093fdc431'),(13182,872,'post_image_left_id_video','344894438'),(13183,872,'_post_image_left_id_video','field_5d570987dc432'),(13184,873,'hero_section_title','Frequenty asked questions'),(13185,873,'_hero_section_title','field_5d55a345f8cdb'),(13186,873,'hero_section_image','61'),(13187,873,'_hero_section_image','field_5d55a424f8cdc'),(13188,873,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co'),(13189,873,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(13190,873,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(13191,873,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(13192,873,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co'),(13193,873,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(13194,873,'hero_section_links_1_hero_section_link_title','What is Expedited Arrival?'),(13195,873,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(13196,873,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(13197,873,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(13198,873,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(13199,873,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(13200,873,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13201,873,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(13202,873,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(13203,873,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(13204,873,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13205,873,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(13206,873,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(13207,873,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(13208,873,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co'),(13209,873,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(13210,873,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(13211,873,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(13212,873,'hero_section_links','6'),(13213,873,'_hero_section_links','field_5d55a451f8cdd'),(13214,873,'popular_features_title','Popular Features'),(13215,873,'_popular_features_title','field_5d55abb7ffa2d'),(13216,873,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(13217,873,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(13218,873,'popular_features_links_0_popular_features_link_title','Ships'),(13219,873,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(13220,873,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13221,873,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(13222,873,'popular_features_links_1_popular_features_link_title','Guest Account'),(13223,873,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(13224,873,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(13225,873,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(13226,873,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(13227,873,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(13228,873,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(13229,873,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(13230,873,'popular_features_links_3_popular_features_link_title','Check-in'),(13231,873,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(13232,873,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(13233,873,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(13234,873,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(13235,873,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(13236,873,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13237,873,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(13238,873,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(13239,873,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(13240,873,'popular_features_links','6'),(13241,873,'_popular_features_links','field_5d55ac6b2b75e'),(13242,873,'helpful_articles_title','Helpful articles and how-to\'s'),(13243,873,'_helpful_articles_title','field_5d55b136c34eb'),(13244,873,'post_image_right_title','Solving for the future of cruising.'),(13245,873,'_post_image_right_title','field_5d55b49247b3a'),(13246,873,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13247,873,'_post_image_right_description','field_5d55b49b47b3b'),(13248,873,'post_image_right_title_link','Learn more'),(13249,873,'_post_image_right_title_link','field_5d55b4a747b3c'),(13250,873,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13251,873,'_post_image_right_link','field_5d55b4b247b3d'),(13252,873,'post_image_right_image','527'),(13253,873,'_post_image_right_image','field_5d55b4be47b3e'),(13254,873,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(13255,873,'_post_image_left_title','field_5d55b69a7e8a7'),(13256,873,'post_image_left_link','https://vimeo.com/'),(13257,873,'_post_image_left_link','field_5d55b6a47e8a8'),(13258,873,'post_image_left_image','536'),(13259,873,'_post_image_left_image','field_5d55b6b47e8a9'),(13260,873,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(13261,873,'_select_posts','field_5d55ba1e32eec'),(13262,873,'seletc_type_link','Vídeo'),(13263,873,'_seletc_type_link','field_5d57093fdc431'),(13264,873,'post_image_left_id_video','344894438'),(13265,873,'_post_image_left_id_video','field_5d570987dc432'),(13270,874,'author_news','2'),(13271,874,'_author_news','field_5d3083fbbea51'),(13272,874,'select_brand','144'),(13273,874,'_select_brand','field_5d3084d736561'),(13274,874,'featured_post','0'),(13275,874,'_featured_post','field_5d30852c7c4e7'),(13276,874,'legend_featured_image',''),(13277,874,'_legend_featured_image','field_5d39e9d4ef8f8'),(13278,874,'select_posts_related',''),(13279,874,'_select_posts_related','field_5d3afdcff5db7'),(13282,804,'_thumbnail_id','868'),(13289,876,'author_news','2'),(13290,876,'_author_news','field_5d3083fbbea51'),(13291,876,'select_brand','144'),(13292,876,'_select_brand','field_5d3084d736561'),(13293,876,'featured_post','0'),(13294,876,'_featured_post','field_5d30852c7c4e7'),(13295,876,'legend_featured_image',''),(13296,876,'_legend_featured_image','field_5d39e9d4ef8f8'),(13297,876,'select_posts_related',''),(13298,876,'_select_posts_related','field_5d3afdcff5db7'),(13299,877,'title_hero','Solving for the<br> digital future of<br> cruising'),(13300,877,'_title_hero','field_5d2cbfcfc7b2b'),(13301,877,'title_quote','Tech that'),(13302,877,'_title_quote','field_5d2cc09b51dfa'),(13303,877,'title_strong_quote','ships'),(13304,877,'_title_strong_quote','field_5d2cc0db51dfc'),(13305,877,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(13306,877,'_description_quote','field_5d2cc0a851dfb'),(13307,877,'imagem_quote','45'),(13308,877,'_imagem_quote','field_5d2cc0ed51dfd'),(13309,877,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(13310,877,'_description_blockquote','field_5d2cc22c9da9a'),(13311,877,'author_blockquote','Richard Fain, in an interview with'),(13312,877,'_author_blockquote','field_5d2cc25a9da9b'),(13313,877,'company','TechRepublic'),(13314,877,'_company','field_5d2cc2769da9c'),(13315,877,'company_blockquote','TechRepublic'),(13316,877,'_company_blockquote','field_5d2cc2769da9c'),(13317,877,'title_featured_i','Self serving'),(13318,877,'_title_featured_i','field_5d2cc41890f84'),(13319,877,'description_featured_i','All you need to begin the check-in process is a smile.'),(13320,877,'_description_featured_i','field_5d2cc42890f85'),(13321,877,'seletc_type_link_featured_i','Link'),(13322,877,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(13323,877,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(13324,877,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(13325,877,'imagem_featured_i','361'),(13326,877,'_imagem_featured_i','field_5d2cc71559443'),(13327,877,'title_info_numbers','Digital by<br> the numbers'),(13328,877,'_title_info_numbers','field_5d2cc7e517635'),(13329,877,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(13330,877,'_description_info_number','field_5d2cc7f817636'),(13331,877,'app_downloads','3M'),(13332,877,'_app_downloads','field_5d2cc83e17637'),(13333,877,'active_users','1M'),(13334,877,'_active_users','field_5d2cc84617638'),(13335,877,'average_ios_rating','4.6'),(13336,877,'_average_ios_rating','field_5d2cc85217639'),(13337,877,'crew_checkins','14k'),(13338,877,'_crew_checkins','field_5d2cc8631763a'),(13339,877,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(13340,877,'_title_featured_ii','field_5d2cc9741153c'),(13341,877,'description_featured_ii',''),(13342,877,'_description_featured_ii','field_5d2cc97e1153d'),(13343,877,'imagem_featured_ii','45'),(13344,877,'_imagem_featured_ii','field_5d2cc98c1153e'),(13345,877,'seletc_type_link_featured_ii','Link'),(13346,877,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(13347,877,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(13348,877,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(13349,877,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(13350,877,'_title_featured_iii','field_5d2ccafff022a'),(13351,877,'description_featured_iii',''),(13352,877,'_description_featured_iii','field_5d2ccb0cf022b'),(13353,877,'imagem_featured_iii','862'),(13354,877,'_imagem_featured_iii','field_5d2ccb21f022c'),(13355,877,'seletc_type_link_featured_iii','Vídeo'),(13356,877,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(13357,877,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(13358,877,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(13359,877,'subtitle_hero','Our guests often ask…'),(13360,877,'_subtitle_hero','field_5d5711764ff01'),(13361,877,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13362,877,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(13363,877,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(13364,877,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(13365,877,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13366,877,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(13367,877,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(13368,877,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(13369,877,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(13370,877,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(13371,877,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(13372,877,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(13373,877,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(13374,877,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(13375,877,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(13376,877,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(13377,877,'hero_section_links_4_hero_section_link',''),(13378,877,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(13379,877,'hero_section_links_4_hero_section_link_title',''),(13380,877,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(13381,877,'hero_section_links_5_hero_section_link',''),(13382,877,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(13383,877,'hero_section_links_5_hero_section_link_title',''),(13384,877,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(13385,877,'hero_section_links','6'),(13386,877,'_hero_section_links','field_5d5711cf21851'),(13387,877,'featured_faq_title','Solving the digital future of cruising.'),(13388,877,'_featured_faq_title','field_5d57145bc652e'),(13389,877,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13390,877,'_featured_faq_description','field_5d57146bc652f'),(13391,877,'featured_faq_link','http://royaldigital.labcp.co/'),(13392,877,'_featured_faq_link','field_5d57147ec6530'),(13393,877,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(13394,877,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(13395,877,'popular_features_links_0_popular_features_link_title','Ships'),(13396,877,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(13397,877,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(13398,877,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(13399,877,'popular_features_links_1_popular_features_link_title','Check-in'),(13400,877,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(13401,877,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(13402,877,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(13403,877,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(13404,877,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(13405,877,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(13406,877,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(13407,877,'popular_features_links_3_popular_features_link_title','Guest Account'),(13408,877,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(13409,877,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(13410,877,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(13411,877,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(13412,877,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(13413,877,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(13414,877,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(13415,877,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(13416,877,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(13417,877,'popular_features_links','6'),(13418,877,'_popular_features_links','field_5d5714d1c6531'),(13423,878,'author_news','2'),(13424,878,'_author_news','field_5d3083fbbea51'),(13425,878,'select_brand','144'),(13426,878,'_select_brand','field_5d3084d736561'),(13427,878,'featured_post','0'),(13428,878,'_featured_post','field_5d30852c7c4e7'),(13429,878,'legend_featured_image',''),(13430,878,'_legend_featured_image','field_5d39e9d4ef8f8'),(13431,878,'select_posts_related',''),(13432,878,'_select_posts_related','field_5d3afdcff5db7'),(13437,880,'author_news','2'),(13438,880,'_author_news','field_5d3083fbbea51'),(13439,880,'select_brand','144'),(13440,880,'_select_brand','field_5d3084d736561'),(13441,880,'featured_post','0'),(13442,880,'_featured_post','field_5d30852c7c4e7'),(13443,880,'legend_featured_image',''),(13444,880,'_legend_featured_image','field_5d39e9d4ef8f8'),(13445,880,'select_posts_related',''),(13446,880,'_select_posts_related','field_5d3afdcff5db7'),(13459,881,'author_news','2'),(13460,881,'_author_news','field_5d3083fbbea51'),(13461,881,'select_brand','144'),(13462,881,'_select_brand','field_5d3084d736561'),(13463,881,'featured_post','0'),(13464,881,'_featured_post','field_5d30852c7c4e7'),(13465,881,'legend_featured_image',''),(13466,881,'_legend_featured_image','field_5d39e9d4ef8f8'),(13467,881,'select_posts_related',''),(13468,881,'_select_posts_related','field_5d3afdcff5db7'),(13477,882,'author_news','2'),(13478,882,'_author_news','field_5d3083fbbea51'),(13479,882,'select_brand','144'),(13480,882,'_select_brand','field_5d3084d736561'),(13481,882,'featured_post','0'),(13482,882,'_featured_post','field_5d30852c7c4e7'),(13483,882,'legend_featured_image',''),(13484,882,'_legend_featured_image','field_5d39e9d4ef8f8'),(13485,882,'select_posts_related',''),(13486,882,'_select_posts_related','field_5d3afdcff5db7'),(13491,883,'title_hero','Solving for the<br> digital future of<br> cruising'),(13492,883,'_title_hero','field_5d2cbfcfc7b2b'),(13493,883,'title_quote','Tech that'),(13494,883,'_title_quote','field_5d2cc09b51dfa'),(13495,883,'title_strong_quote','ships'),(13496,883,'_title_strong_quote','field_5d2cc0db51dfc'),(13497,883,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(13498,883,'_description_quote','field_5d2cc0a851dfb'),(13499,883,'imagem_quote','45'),(13500,883,'_imagem_quote','field_5d2cc0ed51dfd'),(13501,883,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(13502,883,'_description_blockquote','field_5d2cc22c9da9a'),(13503,883,'author_blockquote','Richard Fain, in an interview with'),(13504,883,'_author_blockquote','field_5d2cc25a9da9b'),(13505,883,'company','TechRepublic'),(13506,883,'_company','field_5d2cc2769da9c'),(13507,883,'company_blockquote','TechRepublic'),(13508,883,'_company_blockquote','field_5d2cc2769da9c'),(13509,883,'title_featured_i','Self serving'),(13510,883,'_title_featured_i','field_5d2cc41890f84'),(13511,883,'description_featured_i','All you need to begin the check-in process is a smile.'),(13512,883,'_description_featured_i','field_5d2cc42890f85'),(13513,883,'seletc_type_link_featured_i','Link'),(13514,883,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(13515,883,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(13516,883,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(13517,883,'imagem_featured_i','361'),(13518,883,'_imagem_featured_i','field_5d2cc71559443'),(13519,883,'title_info_numbers','Digital by<br> the numbers'),(13520,883,'_title_info_numbers','field_5d2cc7e517635'),(13521,883,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(13522,883,'_description_info_number','field_5d2cc7f817636'),(13523,883,'app_downloads','3M'),(13524,883,'_app_downloads','field_5d2cc83e17637'),(13525,883,'active_users','1M'),(13526,883,'_active_users','field_5d2cc84617638'),(13527,883,'average_ios_rating','4.6'),(13528,883,'_average_ios_rating','field_5d2cc85217639'),(13529,883,'crew_checkins','14k'),(13530,883,'_crew_checkins','field_5d2cc8631763a'),(13531,883,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(13532,883,'_title_featured_ii','field_5d2cc9741153c'),(13533,883,'description_featured_ii',''),(13534,883,'_description_featured_ii','field_5d2cc97e1153d'),(13535,883,'imagem_featured_ii','45'),(13536,883,'_imagem_featured_ii','field_5d2cc98c1153e'),(13537,883,'seletc_type_link_featured_ii','Link'),(13538,883,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(13539,883,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(13540,883,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(13541,883,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(13542,883,'_title_featured_iii','field_5d2ccafff022a'),(13543,883,'description_featured_iii',''),(13544,883,'_description_featured_iii','field_5d2ccb0cf022b'),(13545,883,'imagem_featured_iii','862'),(13546,883,'_imagem_featured_iii','field_5d2ccb21f022c'),(13547,883,'seletc_type_link_featured_iii','Vídeo'),(13548,883,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(13549,883,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(13550,883,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(13551,883,'subtitle_hero','Our guests often ask…'),(13552,883,'_subtitle_hero','field_5d5711764ff01'),(13553,883,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13554,883,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(13555,883,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(13556,883,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(13557,883,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13558,883,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(13559,883,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(13560,883,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(13561,883,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(13562,883,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(13563,883,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(13564,883,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(13565,883,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(13566,883,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(13567,883,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(13568,883,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(13569,883,'hero_section_links_4_hero_section_link',''),(13570,883,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(13571,883,'hero_section_links_4_hero_section_link_title',''),(13572,883,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(13573,883,'hero_section_links_5_hero_section_link',''),(13574,883,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(13575,883,'hero_section_links_5_hero_section_link_title',''),(13576,883,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(13577,883,'hero_section_links','6'),(13578,883,'_hero_section_links','field_5d5711cf21851'),(13579,883,'featured_faq_title','Solving the digital future of cruising.'),(13580,883,'_featured_faq_title','field_5d57145bc652e'),(13581,883,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13582,883,'_featured_faq_description','field_5d57146bc652f'),(13583,883,'featured_faq_link','http://royaldigital.labcp.co/'),(13584,883,'_featured_faq_link','field_5d57147ec6530'),(13585,883,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(13586,883,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(13587,883,'popular_features_links_0_popular_features_link_title','Ships'),(13588,883,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(13589,883,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/'),(13590,883,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(13591,883,'popular_features_links_1_popular_features_link_title','Check-in'),(13592,883,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(13593,883,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/'),(13594,883,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(13595,883,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(13596,883,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(13597,883,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/'),(13598,883,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(13599,883,'popular_features_links_3_popular_features_link_title','Guest Account'),(13600,883,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(13601,883,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/'),(13602,883,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(13603,883,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(13604,883,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(13605,883,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/'),(13606,883,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(13607,883,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(13608,883,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(13609,883,'popular_features_links','6'),(13610,883,'_popular_features_links','field_5d5714d1c6531'),(13611,884,'title_hero','Solving for the<br> digital future of<br> cruising'),(13612,884,'_title_hero','field_5d2cbfcfc7b2b'),(13613,884,'title_quote','Tech that'),(13614,884,'_title_quote','field_5d2cc09b51dfa'),(13615,884,'title_strong_quote','ships'),(13616,884,'_title_strong_quote','field_5d2cc0db51dfc'),(13617,884,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(13618,884,'_description_quote','field_5d2cc0a851dfb'),(13619,884,'imagem_quote','45'),(13620,884,'_imagem_quote','field_5d2cc0ed51dfd'),(13621,884,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(13622,884,'_description_blockquote','field_5d2cc22c9da9a'),(13623,884,'author_blockquote','Richard Fain, in an interview with'),(13624,884,'_author_blockquote','field_5d2cc25a9da9b'),(13625,884,'company','TechRepublic'),(13626,884,'_company','field_5d2cc2769da9c'),(13627,884,'company_blockquote','TechRepublic'),(13628,884,'_company_blockquote','field_5d2cc2769da9c'),(13629,884,'title_featured_i','Self serving'),(13630,884,'_title_featured_i','field_5d2cc41890f84'),(13631,884,'description_featured_i','All you need to begin the check-in process is a smile.'),(13632,884,'_description_featured_i','field_5d2cc42890f85'),(13633,884,'seletc_type_link_featured_i','Link'),(13634,884,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(13635,884,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(13636,884,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(13637,884,'imagem_featured_i','361'),(13638,884,'_imagem_featured_i','field_5d2cc71559443'),(13639,884,'title_info_numbers','Digital by<br> the numbers'),(13640,884,'_title_info_numbers','field_5d2cc7e517635'),(13641,884,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(13642,884,'_description_info_number','field_5d2cc7f817636'),(13643,884,'app_downloads','3M'),(13644,884,'_app_downloads','field_5d2cc83e17637'),(13645,884,'active_users','1M'),(13646,884,'_active_users','field_5d2cc84617638'),(13647,884,'average_ios_rating','4.6'),(13648,884,'_average_ios_rating','field_5d2cc85217639'),(13649,884,'crew_checkins','14k'),(13650,884,'_crew_checkins','field_5d2cc8631763a'),(13651,884,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(13652,884,'_title_featured_ii','field_5d2cc9741153c'),(13653,884,'description_featured_ii',''),(13654,884,'_description_featured_ii','field_5d2cc97e1153d'),(13655,884,'imagem_featured_ii','45'),(13656,884,'_imagem_featured_ii','field_5d2cc98c1153e'),(13657,884,'seletc_type_link_featured_ii','Link'),(13658,884,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(13659,884,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(13660,884,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(13661,884,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(13662,884,'_title_featured_iii','field_5d2ccafff022a'),(13663,884,'description_featured_iii',''),(13664,884,'_description_featured_iii','field_5d2ccb0cf022b'),(13665,884,'imagem_featured_iii','862'),(13666,884,'_imagem_featured_iii','field_5d2ccb21f022c'),(13667,884,'seletc_type_link_featured_iii','Vídeo'),(13668,884,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(13669,884,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(13670,884,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(13671,884,'subtitle_hero','Our guests often ask…'),(13672,884,'_subtitle_hero','field_5d5711764ff01'),(13673,884,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13674,884,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(13675,884,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(13676,884,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(13677,884,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13678,884,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(13679,884,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(13680,884,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(13681,884,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(13682,884,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(13683,884,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(13684,884,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(13685,884,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(13686,884,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(13687,884,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(13688,884,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(13689,884,'hero_section_links_4_hero_section_link',''),(13690,884,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(13691,884,'hero_section_links_4_hero_section_link_title',''),(13692,884,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(13693,884,'hero_section_links_5_hero_section_link',''),(13694,884,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(13695,884,'hero_section_links_5_hero_section_link_title',''),(13696,884,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(13697,884,'hero_section_links','6'),(13698,884,'_hero_section_links','field_5d5711cf21851'),(13699,884,'featured_faq_title','Solving the digital future of cruising.'),(13700,884,'_featured_faq_title','field_5d57145bc652e'),(13701,884,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13702,884,'_featured_faq_description','field_5d57146bc652f'),(13703,884,'featured_faq_link','http://royaldigital.labcp.co/'),(13704,884,'_featured_faq_link','field_5d57147ec6530'),(13705,884,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(13706,884,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(13707,884,'popular_features_links_0_popular_features_link_title','Ships'),(13708,884,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(13709,884,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(13710,884,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(13711,884,'popular_features_links_1_popular_features_link_title','Check-in'),(13712,884,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(13713,884,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13714,884,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(13715,884,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(13716,884,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(13717,884,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13718,884,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(13719,884,'popular_features_links_3_popular_features_link_title','Guest Account'),(13720,884,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(13721,884,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(13722,884,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(13723,884,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(13724,884,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(13725,884,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(13726,884,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(13727,884,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(13728,884,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(13729,884,'popular_features_links','6'),(13730,884,'_popular_features_links','field_5d5714d1c6531'),(13731,885,'hero_section_title','Frequenty asked questions'),(13732,885,'_hero_section_title','field_5d55a345f8cdb'),(13733,885,'hero_section_image','670'),(13734,885,'_hero_section_image','field_5d55a424f8cdc'),(13735,885,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13736,885,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(13737,885,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(13738,885,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(13739,885,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(13740,885,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(13741,885,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(13742,885,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(13743,885,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co'),(13744,885,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(13745,885,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(13746,885,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(13747,885,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13748,885,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(13749,885,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(13750,885,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(13751,885,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13752,885,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(13753,885,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(13754,885,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(13755,885,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(13756,885,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(13757,885,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(13758,885,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(13759,885,'hero_section_links','6'),(13760,885,'_hero_section_links','field_5d55a451f8cdd'),(13761,885,'popular_features_title','Popular Features'),(13762,885,'_popular_features_title','field_5d55abb7ffa2d'),(13763,885,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(13764,885,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(13765,885,'popular_features_links_0_popular_features_link_title','Ships'),(13766,885,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(13767,885,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13768,885,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(13769,885,'popular_features_links_1_popular_features_link_title','Guest Account'),(13770,885,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(13771,885,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(13772,885,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(13773,885,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(13774,885,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(13775,885,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(13776,885,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(13777,885,'popular_features_links_3_popular_features_link_title','Check-in'),(13778,885,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(13779,885,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(13780,885,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(13781,885,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(13782,885,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(13783,885,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13784,885,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(13785,885,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(13786,885,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(13787,885,'popular_features_links','6'),(13788,885,'_popular_features_links','field_5d55ac6b2b75e'),(13789,885,'helpful_articles_title','Helpful articles and how-to\'s'),(13790,885,'_helpful_articles_title','field_5d55b136c34eb'),(13791,885,'post_image_right_title','Solving for the future of cruising.'),(13792,885,'_post_image_right_title','field_5d55b49247b3a'),(13793,885,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13794,885,'_post_image_right_description','field_5d55b49b47b3b'),(13795,885,'post_image_right_title_link','Learn more'),(13796,885,'_post_image_right_title_link','field_5d55b4a747b3c'),(13797,885,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13798,885,'_post_image_right_link','field_5d55b4b247b3d'),(13799,885,'post_image_right_image','527'),(13800,885,'_post_image_right_image','field_5d55b4be47b3e'),(13801,885,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(13802,885,'_post_image_left_title','field_5d55b69a7e8a7'),(13803,885,'post_image_left_link','https://vimeo.com/'),(13804,885,'_post_image_left_link','field_5d55b6a47e8a8'),(13805,885,'post_image_left_image','536'),(13806,885,'_post_image_left_image','field_5d55b6b47e8a9'),(13807,885,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(13808,885,'_select_posts','field_5d55ba1e32eec'),(13809,885,'seletc_type_link','Vídeo'),(13810,885,'_seletc_type_link','field_5d57093fdc431'),(13811,885,'post_image_left_id_video','344894438'),(13812,885,'_post_image_left_id_video','field_5d570987dc432'),(13817,886,'hero_section_title','Frequenty asked questions'),(13818,886,'_hero_section_title','field_5d55a345f8cdb'),(13819,886,'hero_section_image','670'),(13820,886,'_hero_section_image','field_5d55a424f8cdc'),(13821,886,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(13822,886,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(13823,886,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(13824,886,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(13825,886,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(13826,886,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(13827,886,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(13828,886,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(13829,886,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(13830,886,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(13831,886,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(13832,886,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(13833,886,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13834,886,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(13835,886,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(13836,886,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(13837,886,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13838,886,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(13839,886,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(13840,886,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(13841,886,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(13842,886,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(13843,886,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(13844,886,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(13845,886,'hero_section_links','6'),(13846,886,'_hero_section_links','field_5d55a451f8cdd'),(13847,886,'popular_features_title','Popular Features'),(13848,886,'_popular_features_title','field_5d55abb7ffa2d'),(13849,886,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(13850,886,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(13851,886,'popular_features_links_0_popular_features_link_title','Ships'),(13852,886,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(13853,886,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(13854,886,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(13855,886,'popular_features_links_1_popular_features_link_title','Guest Account'),(13856,886,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(13857,886,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(13858,886,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(13859,886,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(13860,886,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(13861,886,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(13862,886,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(13863,886,'popular_features_links_3_popular_features_link_title','Check-in'),(13864,886,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(13865,886,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(13866,886,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(13867,886,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(13868,886,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(13869,886,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13870,886,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(13871,886,'popular_features_links_5_popular_features_link_title','Onborad<br>Wi-fi'),(13872,886,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(13873,886,'popular_features_links','6'),(13874,886,'_popular_features_links','field_5d55ac6b2b75e'),(13875,886,'helpful_articles_title','Helpful articles and how-to\'s'),(13876,886,'_helpful_articles_title','field_5d55b136c34eb'),(13877,886,'post_image_right_title','Solving for the future of cruising.'),(13878,886,'_post_image_right_title','field_5d55b49247b3a'),(13879,886,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(13880,886,'_post_image_right_description','field_5d55b49b47b3b'),(13881,886,'post_image_right_title_link','Learn more'),(13882,886,'_post_image_right_title_link','field_5d55b4a747b3c'),(13883,886,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(13884,886,'_post_image_right_link','field_5d55b4b247b3d'),(13885,886,'post_image_right_image','527'),(13886,886,'_post_image_right_image','field_5d55b4be47b3e'),(13887,886,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(13888,886,'_post_image_left_title','field_5d55b69a7e8a7'),(13889,886,'post_image_left_link','https://vimeo.com/'),(13890,886,'_post_image_left_link','field_5d55b6a47e8a8'),(13891,886,'post_image_left_image','536'),(13892,886,'_post_image_left_image','field_5d55b6b47e8a9'),(13893,886,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(13894,886,'_select_posts','field_5d55ba1e32eec'),(13895,886,'seletc_type_link','Vídeo'),(13896,886,'_seletc_type_link','field_5d57093fdc431'),(13897,886,'post_image_left_id_video','344894438'),(13898,886,'_post_image_left_id_video','field_5d570987dc432'),(13907,887,'_wp_attached_file','2019/07/ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2.jpg'),(13908,887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:63:\"2019/07/ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:64:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:63:\"ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1567788086\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13913,889,'_edit_lock','1595463406:9'),(13914,889,'_edit_last','5'),(13915,889,'_thumbnail_id','868'),(13916,889,'url_video_featured',''),(13917,889,'_url_video_featured','field_5d4b2b239e718'),(13918,889,'content_faq','1'),(13919,889,'_content_faq','field_5d4c26b63bd77'),(13920,889,'select_posts_related','a:3:{i:0;s:3:\"391\";i:1;s:3:\"332\";i:2;s:3:\"337\";}'),(13921,889,'_select_posts_related','field_5d4b2b239e75e'),(13922,889,'download_app_caribbean_digital','1'),(13923,889,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(13924,889,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(13925,889,'_need_more_help','field_5d4c2771f5de3'),(13926,889,'author_news','2'),(13927,889,'_author_news','field_5d4b2aa11701b'),(13928,889,'description_post','What Guests should know before sailing'),(13929,889,'_description_post','field_5d55bc8c63af0'),(13930,889,'content_faq_0_image_featured_row','939'),(13931,889,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(13932,889,'content_faq_0_text_row_content','<span style=\"font-weight: 400;\">Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </span>\r\n<h3>At home</h3>\r\n<b>How can I download the app? </b>\r\n\r\n<span style=\"font-weight: 400;\">Android users can find the Royal Caribbean International, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. If you\'ve used the app before, there is no need to download it again. If you haven\'t downloaded the app yet, you will need to do so at least 48 hours in advance of your first sailing day to take advantage of its features.</span>\r\n\r\n<b>How do I set up a Guest Account? </b>\r\n\r\n<span style=\"font-weight: 400;\">Guest Accounts help organize your information and planning all in one convenient and easy location. </span><a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\"><span style=\"font-weight: 400;\">Click here</span></a> <span style=\"font-weight: 400;\">for more information. </span>\r\n\r\n<b>What does linking my sailing mean? </b>\r\n\r\n<span style=\"font-weight: 400;\">Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically.</span>\r\n\r\n<span style=\"font-weight: 400;\">If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation.</span>\r\n\r\n<b>When can I check in after booking?</b>\r\n\r\n<span style=\"font-weight: 400;\">Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. </span><span style=\"font-weight: 400;\"><a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">Checking in online</a> allows all guests in your party to board more quickly on your day of sailing. <a href=\"http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/\">Expedited Arrival</a></span><span style=\"font-weight: 400;\"> will speed up your onboarding experience at the terminal!</span>\r\n\r\n<span style=\"font-weight: 400;\">For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the Hints and Tips link. </span>\r\n<h3>Onboard</h3>\r\n<b>Connect to ship WiFi and launch the app once onboard</b>\r\n\r\n<span style=\"font-weight: 400;\">Connect, and use the app at no cost. </span><a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\"><span style=\"font-weight: 400;\">It\'s easy</span></a><span style=\"font-weight: 400;\">!</span>\r\n\r\n<b>Start booking activities, specialty dining, shore excursions and more.</b>\r\n\r\n<a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\"><span style=\"font-weight: 400;\">Use your app to book</span></a> all the excitement, fun, and relaxation to make the most of your vacation with us.\r\n\r\n<span style=\"font-weight: 400;\">If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</span>'),(13933,889,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(13934,889,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(13935,889,'_link_app_ios','field_5d4c2862f5de5'),(13936,889,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(13937,889,'_link_app_android','field_5d4c287cf5de6'),(13938,890,'title_hero','Solving for the<br> digital future of<br> cruising'),(13939,890,'_title_hero','field_5d2cbfcfc7b2b'),(13940,890,'title_quote','Tech that'),(13941,890,'_title_quote','field_5d2cc09b51dfa'),(13942,890,'title_strong_quote','ships'),(13943,890,'_title_strong_quote','field_5d2cc0db51dfc'),(13944,890,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(13945,890,'_description_quote','field_5d2cc0a851dfb'),(13946,890,'imagem_quote','45'),(13947,890,'_imagem_quote','field_5d2cc0ed51dfd'),(13948,890,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(13949,890,'_description_blockquote','field_5d2cc22c9da9a'),(13950,890,'author_blockquote','Richard Fain, in an interview with'),(13951,890,'_author_blockquote','field_5d2cc25a9da9b'),(13952,890,'company','TechRepublic'),(13953,890,'_company','field_5d2cc2769da9c'),(13954,890,'company_blockquote','TechRepublic'),(13955,890,'_company_blockquote','field_5d2cc2769da9c'),(13956,890,'title_featured_i','Self serving'),(13957,890,'_title_featured_i','field_5d2cc41890f84'),(13958,890,'description_featured_i','All you need to begin the check-in process is a smile.'),(13959,890,'_description_featured_i','field_5d2cc42890f85'),(13960,890,'seletc_type_link_featured_i','Link'),(13961,890,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(13962,890,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(13963,890,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(13964,890,'imagem_featured_i','361'),(13965,890,'_imagem_featured_i','field_5d2cc71559443'),(13966,890,'title_info_numbers','Digital by<br> the numbers'),(13967,890,'_title_info_numbers','field_5d2cc7e517635'),(13968,890,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(13969,890,'_description_info_number','field_5d2cc7f817636'),(13970,890,'app_downloads','3M'),(13971,890,'_app_downloads','field_5d2cc83e17637'),(13972,890,'active_users','1M'),(13973,890,'_active_users','field_5d2cc84617638'),(13974,890,'average_ios_rating','4.6'),(13975,890,'_average_ios_rating','field_5d2cc85217639'),(13976,890,'crew_checkins','14k'),(13977,890,'_crew_checkins','field_5d2cc8631763a'),(13978,890,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(13979,890,'_title_featured_ii','field_5d2cc9741153c'),(13980,890,'description_featured_ii',''),(13981,890,'_description_featured_ii','field_5d2cc97e1153d'),(13982,890,'imagem_featured_ii','45'),(13983,890,'_imagem_featured_ii','field_5d2cc98c1153e'),(13984,890,'seletc_type_link_featured_ii','Link'),(13985,890,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(13986,890,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(13987,890,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(13988,890,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(13989,890,'_title_featured_iii','field_5d2ccafff022a'),(13990,890,'description_featured_iii',''),(13991,890,'_description_featured_iii','field_5d2ccb0cf022b'),(13992,890,'imagem_featured_iii','862'),(13993,890,'_imagem_featured_iii','field_5d2ccb21f022c'),(13994,890,'seletc_type_link_featured_iii','Vídeo'),(13995,890,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(13996,890,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(13997,890,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(13998,890,'subtitle_hero','Our guests often ask…'),(13999,890,'_subtitle_hero','field_5d5711764ff01'),(14000,890,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14001,890,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(14002,890,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(14003,890,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(14004,890,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14005,890,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(14006,890,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(14007,890,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(14008,890,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(14009,890,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(14010,890,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(14011,890,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(14012,890,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14013,890,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(14014,890,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(14015,890,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(14016,890,'hero_section_links_4_hero_section_link',''),(14017,890,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(14018,890,'hero_section_links_4_hero_section_link_title',''),(14019,890,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(14020,890,'hero_section_links_5_hero_section_link',''),(14021,890,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(14022,890,'hero_section_links_5_hero_section_link_title',''),(14023,890,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(14024,890,'hero_section_links','6'),(14025,890,'_hero_section_links','field_5d5711cf21851'),(14026,890,'featured_faq_title','Solving the digital future of cruising.'),(14027,890,'_featured_faq_title','field_5d57145bc652e'),(14028,890,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14029,890,'_featured_faq_description','field_5d57146bc652f'),(14030,890,'featured_faq_link','http://royaldigital.labcp.co/'),(14031,890,'_featured_faq_link','field_5d57147ec6530'),(14032,890,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/'),(14033,890,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(14034,890,'popular_features_links_0_popular_features_link_title','Ships'),(14035,890,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(14036,890,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14037,890,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(14038,890,'popular_features_links_1_popular_features_link_title','Check-in'),(14039,890,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(14040,890,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14041,890,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(14042,890,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(14043,890,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(14044,890,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14045,890,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(14046,890,'popular_features_links_3_popular_features_link_title','Guest Account'),(14047,890,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(14048,890,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14049,890,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(14050,890,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(14051,890,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(14052,890,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14053,890,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(14054,890,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(14055,890,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(14056,890,'popular_features_links','6'),(14057,890,'_popular_features_links','field_5d5714d1c6531'),(14060,892,'_wp_attached_file','2019/09/Screen-Shot-2019-07-03-at-11.36.37-AM.jpg'),(14061,892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3150;s:6:\"height\";i:1742;s:4:\"file\";s:49:\"2019/09/Screen-Shot-2019-07-03-at-11.36.37-AM.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-768x425.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1024x566.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-07-03-at-11.36.37-AM-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-07-03-at-11.36.37-AM-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14062,893,'title_hero','Solving for the<br> digital future of<br> cruising'),(14063,893,'_title_hero','field_5d2cbfcfc7b2b'),(14064,893,'title_quote','Tech that'),(14065,893,'_title_quote','field_5d2cc09b51dfa'),(14066,893,'title_strong_quote','ships'),(14067,893,'_title_strong_quote','field_5d2cc0db51dfc'),(14068,893,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(14069,893,'_description_quote','field_5d2cc0a851dfb'),(14070,893,'imagem_quote','45'),(14071,893,'_imagem_quote','field_5d2cc0ed51dfd'),(14072,893,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(14073,893,'_description_blockquote','field_5d2cc22c9da9a'),(14074,893,'author_blockquote','Richard Fain, in an interview with'),(14075,893,'_author_blockquote','field_5d2cc25a9da9b'),(14076,893,'company','TechRepublic'),(14077,893,'_company','field_5d2cc2769da9c'),(14078,893,'company_blockquote','TechRepublic'),(14079,893,'_company_blockquote','field_5d2cc2769da9c'),(14080,893,'title_featured_i','Self serving'),(14081,893,'_title_featured_i','field_5d2cc41890f84'),(14082,893,'description_featured_i','All you need to begin the check-in process is a smile.'),(14083,893,'_description_featured_i','field_5d2cc42890f85'),(14084,893,'seletc_type_link_featured_i','Link'),(14085,893,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(14086,893,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(14087,893,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(14088,893,'imagem_featured_i','361'),(14089,893,'_imagem_featured_i','field_5d2cc71559443'),(14090,893,'title_info_numbers','Digital by<br> the numbers'),(14091,893,'_title_info_numbers','field_5d2cc7e517635'),(14092,893,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(14093,893,'_description_info_number','field_5d2cc7f817636'),(14094,893,'app_downloads','3M'),(14095,893,'_app_downloads','field_5d2cc83e17637'),(14096,893,'active_users','1M'),(14097,893,'_active_users','field_5d2cc84617638'),(14098,893,'average_ios_rating','4.6'),(14099,893,'_average_ios_rating','field_5d2cc85217639'),(14100,893,'crew_checkins','14k'),(14101,893,'_crew_checkins','field_5d2cc8631763a'),(14102,893,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(14103,893,'_title_featured_ii','field_5d2cc9741153c'),(14104,893,'description_featured_ii',''),(14105,893,'_description_featured_ii','field_5d2cc97e1153d'),(14106,893,'imagem_featured_ii','45'),(14107,893,'_imagem_featured_ii','field_5d2cc98c1153e'),(14108,893,'seletc_type_link_featured_ii','Link'),(14109,893,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(14110,893,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(14111,893,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(14112,893,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(14113,893,'_title_featured_iii','field_5d2ccafff022a'),(14114,893,'description_featured_iii',''),(14115,893,'_description_featured_iii','field_5d2ccb0cf022b'),(14116,893,'imagem_featured_iii','862'),(14117,893,'_imagem_featured_iii','field_5d2ccb21f022c'),(14118,893,'seletc_type_link_featured_iii','Vídeo'),(14119,893,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(14120,893,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(14121,893,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(14122,893,'subtitle_hero','Our guests often ask…'),(14123,893,'_subtitle_hero','field_5d5711764ff01'),(14124,893,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14125,893,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(14126,893,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(14127,893,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(14128,893,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14129,893,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(14130,893,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(14131,893,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(14132,893,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(14133,893,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(14134,893,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(14135,893,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(14136,893,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14137,893,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(14138,893,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(14139,893,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(14140,893,'hero_section_links_4_hero_section_link',''),(14141,893,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(14142,893,'hero_section_links_4_hero_section_link_title',''),(14143,893,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(14144,893,'hero_section_links_5_hero_section_link',''),(14145,893,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(14146,893,'hero_section_links_5_hero_section_link_title',''),(14147,893,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(14148,893,'hero_section_links','6'),(14149,893,'_hero_section_links','field_5d5711cf21851'),(14150,893,'featured_faq_title','Solving the digital future of cruising.'),(14151,893,'_featured_faq_title','field_5d57145bc652e'),(14152,893,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14153,893,'_featured_faq_description','field_5d57146bc652f'),(14154,893,'featured_faq_link','http://royaldigital.labcp.co/'),(14155,893,'_featured_faq_link','field_5d57147ec6530'),(14156,893,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/millenium/'),(14157,893,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(14158,893,'popular_features_links_0_popular_features_link_title','Ships'),(14159,893,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(14160,893,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14161,893,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(14162,893,'popular_features_links_1_popular_features_link_title','Check-in'),(14163,893,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(14164,893,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14165,893,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(14166,893,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(14167,893,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(14168,893,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14169,893,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(14170,893,'popular_features_links_3_popular_features_link_title','Guest Account'),(14171,893,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(14172,893,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14173,893,'_popular_features_links_4_popular_features_link','field_5d5714fbc6532'),(14174,893,'popular_features_links_4_popular_features_link_title','Expedited Arrival'),(14175,893,'_popular_features_links_4_popular_features_link_title','field_5d571514c6533'),(14176,893,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14177,893,'_popular_features_links_5_popular_features_link','field_5d5714fbc6532'),(14178,893,'popular_features_links_5_popular_features_link_title','Onboard Reservations'),(14179,893,'_popular_features_links_5_popular_features_link_title','field_5d571514c6533'),(14180,893,'popular_features_links','6'),(14181,893,'_popular_features_links','field_5d5714d1c6531'),(14182,894,'_wp_attached_file','2019/09/QS-exterior-aerial-3-o-clock-brandless.jpg'),(14183,894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3334;s:6:\"height\";i:2400;s:4:\"file\";s:50:\"2019/09/QS-exterior-aerial-3-o-clock-brandless.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:51:\"QS-exterior-aerial-3-o-clock-brandless-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:50:\"QS-exterior-aerial-3-o-clock-brandless-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:13:\"Azamara Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14184,899,'hero_section_title','Frequenty asked questions'),(14185,899,'_hero_section_title','field_5d55a345f8cdb'),(14186,899,'hero_section_image','670'),(14187,899,'_hero_section_image','field_5d55a424f8cdc'),(14188,899,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14189,899,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14190,899,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14191,899,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14192,899,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14193,899,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14194,899,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14195,899,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14196,899,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14197,899,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14198,899,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14199,899,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14200,899,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14201,899,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(14202,899,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(14203,899,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(14204,899,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14205,899,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(14206,899,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(14207,899,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(14208,899,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14209,899,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(14210,899,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(14211,899,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(14212,899,'hero_section_links','6'),(14213,899,'_hero_section_links','field_5d55a451f8cdd'),(14214,899,'popular_features_title','Popular Features'),(14215,899,'_popular_features_title','field_5d55abb7ffa2d'),(14216,899,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(14217,899,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(14218,899,'popular_features_links_0_popular_features_link_title','Ships'),(14219,899,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(14220,899,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14221,899,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(14222,899,'popular_features_links_1_popular_features_link_title','Guest Account'),(14223,899,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(14224,899,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(14225,899,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(14226,899,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(14227,899,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(14228,899,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14229,899,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(14230,899,'popular_features_links_3_popular_features_link_title','Check-in'),(14231,899,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(14232,899,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(14233,899,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(14234,899,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(14235,899,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(14236,899,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14237,899,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(14238,899,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(14239,899,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(14240,899,'popular_features_links','6'),(14241,899,'_popular_features_links','field_5d55ac6b2b75e'),(14242,899,'helpful_articles_title','Helpful articles and how-to\'s'),(14243,899,'_helpful_articles_title','field_5d55b136c34eb'),(14244,899,'post_image_right_title','Solving for the future of cruising.'),(14245,899,'_post_image_right_title','field_5d55b49247b3a'),(14246,899,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14247,899,'_post_image_right_description','field_5d55b49b47b3b'),(14248,899,'post_image_right_title_link','Learn more'),(14249,899,'_post_image_right_title_link','field_5d55b4a747b3c'),(14250,899,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14251,899,'_post_image_right_link','field_5d55b4b247b3d'),(14252,899,'post_image_right_image','527'),(14253,899,'_post_image_right_image','field_5d55b4be47b3e'),(14254,899,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(14255,899,'_post_image_left_title','field_5d55b69a7e8a7'),(14256,899,'post_image_left_link','https://vimeo.com/'),(14257,899,'_post_image_left_link','field_5d55b6a47e8a8'),(14258,899,'post_image_left_image','536'),(14259,899,'_post_image_left_image','field_5d55b6b47e8a9'),(14260,899,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(14261,899,'_select_posts','field_5d55ba1e32eec'),(14262,899,'seletc_type_link','Vídeo'),(14263,899,'_seletc_type_link','field_5d57093fdc431'),(14264,899,'post_image_left_id_video','344894438'),(14265,899,'_post_image_left_id_video','field_5d570987dc432'),(14266,900,'hero_section_title','Frequenty asked questions'),(14267,900,'_hero_section_title','field_5d55a345f8cdb'),(14268,900,'hero_section_image','670'),(14269,900,'_hero_section_image','field_5d55a424f8cdc'),(14270,900,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14271,900,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14272,900,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14273,900,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14274,900,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14275,900,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14276,900,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14277,900,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14278,900,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14279,900,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14280,900,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14281,900,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14282,900,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14283,900,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(14284,900,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(14285,900,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(14286,900,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14287,900,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(14288,900,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(14289,900,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(14290,900,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14291,900,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(14292,900,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(14293,900,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(14294,900,'hero_section_links','6'),(14295,900,'_hero_section_links','field_5d55a451f8cdd'),(14296,900,'popular_features_title','Popular Features'),(14297,900,'_popular_features_title','field_5d55abb7ffa2d'),(14298,900,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(14299,900,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(14300,900,'popular_features_links_0_popular_features_link_title','Ships'),(14301,900,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(14302,900,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14303,900,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(14304,900,'popular_features_links_1_popular_features_link_title','Guest Account'),(14305,900,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(14306,900,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(14307,900,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(14308,900,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(14309,900,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(14310,900,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14311,900,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(14312,900,'popular_features_links_3_popular_features_link_title','Check-in'),(14313,900,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(14314,900,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(14315,900,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(14316,900,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(14317,900,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(14318,900,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14319,900,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(14320,900,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(14321,900,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(14322,900,'popular_features_links','6'),(14323,900,'_popular_features_links','field_5d55ac6b2b75e'),(14324,900,'helpful_articles_title','Helpful articles and how-to\'s'),(14325,900,'_helpful_articles_title','field_5d55b136c34eb'),(14326,900,'post_image_right_title','Solving for the future of cruising.'),(14327,900,'_post_image_right_title','field_5d55b49247b3a'),(14328,900,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14329,900,'_post_image_right_description','field_5d55b49b47b3b'),(14330,900,'post_image_right_title_link','Learn more'),(14331,900,'_post_image_right_title_link','field_5d55b4a747b3c'),(14332,900,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14333,900,'_post_image_right_link','field_5d55b4b247b3d'),(14334,900,'post_image_right_image','527'),(14335,900,'_post_image_right_image','field_5d55b4be47b3e'),(14336,900,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(14337,900,'_post_image_left_title','field_5d55b69a7e8a7'),(14338,900,'post_image_left_link','https://vimeo.com/'),(14339,900,'_post_image_left_link','field_5d55b6a47e8a8'),(14340,900,'post_image_left_image','536'),(14341,900,'_post_image_left_image','field_5d55b6b47e8a9'),(14342,900,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(14343,900,'_select_posts','field_5d55ba1e32eec'),(14344,900,'seletc_type_link','Vídeo'),(14345,900,'_seletc_type_link','field_5d57093fdc431'),(14346,900,'post_image_left_id_video','344894438'),(14347,900,'_post_image_left_id_video','field_5d570987dc432'),(14352,212,'media_assets',''),(14353,212,'_media_assets','field_5d72c2c090478'),(14354,212,'media_assets_archive_zip',''),(14355,212,'_media_assets_archive_zip','field_5d768ad62c946'),(14356,901,'author_news','2'),(14357,901,'_author_news','field_5d3083fbbea51'),(14358,901,'select_brand','88'),(14359,901,'_select_brand','field_5d3084d736561'),(14360,901,'featured_post','1'),(14361,901,'_featured_post','field_5d30852c7c4e7'),(14362,901,'legend_featured_image','Neque porro quisquam est'),(14363,901,'_legend_featured_image','field_5d39e9d4ef8f8'),(14364,901,'select_posts_related',''),(14365,901,'_select_posts_related','field_5d3afdcff5db7'),(14366,901,'archive_audio_mp3',''),(14367,901,'_archive_audio_mp3','field_5d4989a80007c'),(14368,901,'url_video',''),(14369,901,'_url_video','field_5d49897521f43'),(14370,901,'media_assets',''),(14371,901,'_media_assets','field_5d72c2c090478'),(14372,901,'media_assets_archive_zip',''),(14373,901,'_media_assets_archive_zip','field_5d768ad62c946'),(14386,902,'author_news','2'),(14387,902,'_author_news','field_5d3083fbbea51'),(14388,902,'select_brand','88'),(14389,902,'_select_brand','field_5d3084d736561'),(14390,902,'featured_post','1'),(14391,902,'_featured_post','field_5d30852c7c4e7'),(14392,902,'legend_featured_image','Neque porro quisquam est'),(14393,902,'_legend_featured_image','field_5d39e9d4ef8f8'),(14394,902,'select_posts_related',''),(14395,902,'_select_posts_related','field_5d3afdcff5db7'),(14396,902,'archive_audio_mp3',''),(14397,902,'_archive_audio_mp3','field_5d4989a80007c'),(14398,902,'url_video',''),(14399,902,'_url_video','field_5d49897521f43'),(14400,902,'media_assets',''),(14401,902,'_media_assets','field_5d72c2c090478'),(14402,902,'media_assets_archive_zip',''),(14403,902,'_media_assets_archive_zip','field_5d768ad62c946'),(14414,908,'_wp_attached_file','2019/09/fleet.png'),(14415,908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:125;s:4:\"file\";s:17:\"2019/09/fleet.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"fleet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"fleet-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:18:\"fleet-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:17:\"fleet-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:18:\"fleet-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:17:\"fleet-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:17:\"fleet-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:18:\"fleet-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:17:\"fleet-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:17:\"fleet-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:18:\"fleet-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:17:\"fleet-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(14416,17,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(14417,17,'_link_explore_our_fleet','field_5d77a90f09145'),(14418,17,'image_explore_our_fleet','908'),(14419,17,'_image_explore_our_fleet','field_5d77a96009146'),(14420,17,'title_explore_our_fleet','Need to find your ship?'),(14421,17,'_title_explore_our_fleet','field_5d77a97809147'),(14422,17,'subtitle_explore_our_fleet','Explore our fleet'),(14423,17,'_subtitle_explore_our_fleet','field_5d77a98709148'),(14424,909,'title_hero','Solving for the<br> digital future of<br> cruising'),(14425,909,'_title_hero','field_5d2cbfcfc7b2b'),(14426,909,'title_quote','Tech that'),(14427,909,'_title_quote','field_5d2cc09b51dfa'),(14428,909,'title_strong_quote','ships'),(14429,909,'_title_strong_quote','field_5d2cc0db51dfc'),(14430,909,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(14431,909,'_description_quote','field_5d2cc0a851dfb'),(14432,909,'imagem_quote','45'),(14433,909,'_imagem_quote','field_5d2cc0ed51dfd'),(14434,909,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(14435,909,'_description_blockquote','field_5d2cc22c9da9a'),(14436,909,'author_blockquote','Richard Fain, in an interview with'),(14437,909,'_author_blockquote','field_5d2cc25a9da9b'),(14438,909,'company','TechRepublic'),(14439,909,'_company','field_5d2cc2769da9c'),(14440,909,'company_blockquote','TechRepublic'),(14441,909,'_company_blockquote','field_5d2cc2769da9c'),(14442,909,'title_featured_i','Self serving'),(14443,909,'_title_featured_i','field_5d2cc41890f84'),(14444,909,'description_featured_i','All you need to begin the check-in process is a smile.'),(14445,909,'_description_featured_i','field_5d2cc42890f85'),(14446,909,'seletc_type_link_featured_i','Link'),(14447,909,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(14448,909,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(14449,909,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(14450,909,'imagem_featured_i','361'),(14451,909,'_imagem_featured_i','field_5d2cc71559443'),(14452,909,'title_info_numbers','Digital by<br> the numbers'),(14453,909,'_title_info_numbers','field_5d2cc7e517635'),(14454,909,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(14455,909,'_description_info_number','field_5d2cc7f817636'),(14456,909,'app_downloads','3M'),(14457,909,'_app_downloads','field_5d2cc83e17637'),(14458,909,'active_users','1M'),(14459,909,'_active_users','field_5d2cc84617638'),(14460,909,'average_ios_rating','4.6'),(14461,909,'_average_ios_rating','field_5d2cc85217639'),(14462,909,'crew_checkins','14k'),(14463,909,'_crew_checkins','field_5d2cc8631763a'),(14464,909,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(14465,909,'_title_featured_ii','field_5d2cc9741153c'),(14466,909,'description_featured_ii',''),(14467,909,'_description_featured_ii','field_5d2cc97e1153d'),(14468,909,'imagem_featured_ii','45'),(14469,909,'_imagem_featured_ii','field_5d2cc98c1153e'),(14470,909,'seletc_type_link_featured_ii','Link'),(14471,909,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(14472,909,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(14473,909,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(14474,909,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(14475,909,'_title_featured_iii','field_5d2ccafff022a'),(14476,909,'description_featured_iii',''),(14477,909,'_description_featured_iii','field_5d2ccb0cf022b'),(14478,909,'imagem_featured_iii','862'),(14479,909,'_imagem_featured_iii','field_5d2ccb21f022c'),(14480,909,'seletc_type_link_featured_iii','Vídeo'),(14481,909,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(14482,909,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(14483,909,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(14484,909,'subtitle_hero','Our guests often ask…'),(14485,909,'_subtitle_hero','field_5d5711764ff01'),(14486,909,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14487,909,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(14488,909,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(14489,909,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(14490,909,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14491,909,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(14492,909,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(14493,909,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(14494,909,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(14495,909,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(14496,909,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(14497,909,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(14498,909,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14499,909,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(14500,909,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(14501,909,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(14502,909,'hero_section_links_4_hero_section_link',''),(14503,909,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(14504,909,'hero_section_links_4_hero_section_link_title',''),(14505,909,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(14506,909,'hero_section_links_5_hero_section_link',''),(14507,909,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(14508,909,'hero_section_links_5_hero_section_link_title',''),(14509,909,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(14510,909,'hero_section_links','6'),(14511,909,'_hero_section_links','field_5d5711cf21851'),(14512,909,'featured_faq_title','Solving the digital future of cruising.'),(14513,909,'_featured_faq_title','field_5d57145bc652e'),(14514,909,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14515,909,'_featured_faq_description','field_5d57146bc652f'),(14516,909,'featured_faq_link','http://royaldigital.labcp.co/'),(14517,909,'_featured_faq_link','field_5d57147ec6530'),(14518,909,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/millenium/'),(14519,909,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(14520,909,'popular_features_links_0_popular_features_link_title','Ships'),(14521,909,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(14522,909,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14523,909,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(14524,909,'popular_features_links_1_popular_features_link_title','Check-in'),(14525,909,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(14526,909,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14527,909,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(14528,909,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(14529,909,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(14530,909,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14531,909,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(14532,909,'popular_features_links_3_popular_features_link_title','Guest Account'),(14533,909,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(14534,909,'popular_features_links','4'),(14535,909,'_popular_features_links','field_5d5714d1c6531'),(14536,909,'link_explore_our_fleet','http://royaldigital.labcp.co/'),(14537,909,'_link_explore_our_fleet','field_5d77a90f09145'),(14538,909,'image_explore_our_fleet','908'),(14539,909,'_image_explore_our_fleet','field_5d77a96009146'),(14540,909,'title_explore_our_fleet','Need to find your ship?'),(14541,909,'_title_explore_our_fleet','field_5d77a97809147'),(14542,909,'subtitle_explore_our_fleet','Explore our fleet'),(14543,909,'_subtitle_explore_our_fleet','field_5d77a98709148'),(14544,911,'title_hero','Solving for the<br> digital future of<br> cruising'),(14545,911,'_title_hero','field_5d2cbfcfc7b2b'),(14546,911,'title_quote','Tech that'),(14547,911,'_title_quote','field_5d2cc09b51dfa'),(14548,911,'title_strong_quote','ships'),(14549,911,'_title_strong_quote','field_5d2cc0db51dfc'),(14550,911,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(14551,911,'_description_quote','field_5d2cc0a851dfb'),(14552,911,'imagem_quote','45'),(14553,911,'_imagem_quote','field_5d2cc0ed51dfd'),(14554,911,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(14555,911,'_description_blockquote','field_5d2cc22c9da9a'),(14556,911,'author_blockquote','Richard Fain, in an interview with'),(14557,911,'_author_blockquote','field_5d2cc25a9da9b'),(14558,911,'company','TechRepublic'),(14559,911,'_company','field_5d2cc2769da9c'),(14560,911,'company_blockquote','TechRepublic'),(14561,911,'_company_blockquote','field_5d2cc2769da9c'),(14562,911,'title_featured_i','Self serving'),(14563,911,'_title_featured_i','field_5d2cc41890f84'),(14564,911,'description_featured_i','All you need to begin the check-in process is a smile.'),(14565,911,'_description_featured_i','field_5d2cc42890f85'),(14566,911,'seletc_type_link_featured_i','Link'),(14567,911,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(14568,911,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(14569,911,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(14570,911,'imagem_featured_i','361'),(14571,911,'_imagem_featured_i','field_5d2cc71559443'),(14572,911,'title_info_numbers','Digital by<br> the numbers'),(14573,911,'_title_info_numbers','field_5d2cc7e517635'),(14574,911,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(14575,911,'_description_info_number','field_5d2cc7f817636'),(14576,911,'app_downloads','3M'),(14577,911,'_app_downloads','field_5d2cc83e17637'),(14578,911,'active_users','1M'),(14579,911,'_active_users','field_5d2cc84617638'),(14580,911,'average_ios_rating','4.6'),(14581,911,'_average_ios_rating','field_5d2cc85217639'),(14582,911,'crew_checkins','14k'),(14583,911,'_crew_checkins','field_5d2cc8631763a'),(14584,911,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(14585,911,'_title_featured_ii','field_5d2cc9741153c'),(14586,911,'description_featured_ii',''),(14587,911,'_description_featured_ii','field_5d2cc97e1153d'),(14588,911,'imagem_featured_ii','45'),(14589,911,'_imagem_featured_ii','field_5d2cc98c1153e'),(14590,911,'seletc_type_link_featured_ii','Link'),(14591,911,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(14592,911,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(14593,911,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(14594,911,'title_featured_iii','Royal Caribbean gets real about artificial intelligence'),(14595,911,'_title_featured_iii','field_5d2ccafff022a'),(14596,911,'description_featured_iii',''),(14597,911,'_description_featured_iii','field_5d2ccb0cf022b'),(14598,911,'imagem_featured_iii','862'),(14599,911,'_imagem_featured_iii','field_5d2ccb21f022c'),(14600,911,'seletc_type_link_featured_iii','Vídeo'),(14601,911,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(14602,911,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(14603,911,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(14604,911,'subtitle_hero','Our guests often ask…'),(14605,911,'_subtitle_hero','field_5d5711764ff01'),(14606,911,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14607,911,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(14608,911,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(14609,911,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(14610,911,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14611,911,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(14612,911,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(14613,911,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(14614,911,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(14615,911,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(14616,911,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(14617,911,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(14618,911,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(14619,911,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(14620,911,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(14621,911,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(14622,911,'hero_section_links_4_hero_section_link',''),(14623,911,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(14624,911,'hero_section_links_4_hero_section_link_title',''),(14625,911,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(14626,911,'hero_section_links_5_hero_section_link',''),(14627,911,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(14628,911,'hero_section_links_5_hero_section_link_title',''),(14629,911,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(14630,911,'hero_section_links','6'),(14631,911,'_hero_section_links','field_5d5711cf21851'),(14632,911,'featured_faq_title','Solving the digital future of cruising.'),(14633,911,'_featured_faq_title','field_5d57145bc652e'),(14634,911,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14635,911,'_featured_faq_description','field_5d57146bc652f'),(14636,911,'featured_faq_link','http://royaldigital.labcp.co/'),(14637,911,'_featured_faq_link','field_5d57147ec6530'),(14638,911,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/millenium/'),(14639,911,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(14640,911,'popular_features_links_0_popular_features_link_title','Ships'),(14641,911,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(14642,911,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14643,911,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(14644,911,'popular_features_links_1_popular_features_link_title','Check-in'),(14645,911,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(14646,911,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14647,911,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(14648,911,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(14649,911,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(14650,911,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14651,911,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(14652,911,'popular_features_links_3_popular_features_link_title','Guest Account'),(14653,911,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(14654,911,'popular_features_links','4'),(14655,911,'_popular_features_links','field_5d5714d1c6531'),(14656,911,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(14657,911,'_link_explore_our_fleet','field_5d77a90f09145'),(14658,911,'image_explore_our_fleet','908'),(14659,911,'_image_explore_our_fleet','field_5d77a96009146'),(14660,911,'title_explore_our_fleet','Need to find your ship?'),(14661,911,'_title_explore_our_fleet','field_5d77a97809147'),(14662,911,'subtitle_explore_our_fleet','Explore our fleet'),(14663,911,'_subtitle_explore_our_fleet','field_5d77a98709148'),(14664,912,'_edit_lock','1568143225:2'),(14665,912,'_edit_last','2'),(14666,912,'select_brand','88'),(14667,912,'_select_brand','field_5d2cda81bbd5a'),(14668,912,'subtitle_ship','Summit'),(14669,912,'_subtitle_ship','field_5d2ce1bd8774a'),(14670,912,'description_ship','Every detail has been elevated, every comfort refined.'),(14671,912,'_description_ship','field_5d2ce1f38774b'),(14672,912,'title_brand_ship','Celebrity Summit'),(14673,912,'_title_brand_ship','field_5d2f247516989'),(14674,912,'description_brand_ship','It\'s our commitment to elevation. Reach unparalleled heights of your cruise experience onboard the redefined Celebrity Summit.'),(14675,912,'_description_brand_ship','field_5d2f24851698a'),(14676,912,'photo_ship','923'),(14677,912,'_photo_ship','field_5d2f24901698b'),(14678,912,'link_appstore','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(14679,912,'_link_appstore','field_5d2f2772dcd08'),(14680,912,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(14681,912,'_link_playstore','field_5d2f277fdcd09'),(14682,912,'technology_0_title_technology','Mobile App'),(14683,912,'_technology_0_title_technology','field_5d2f2748dcd06'),(14684,912,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(14685,912,'_technology_0_description_technology','field_5d2f2754dcd07'),(14686,912,'technology_1_title_technology','Mobile Check-In'),(14687,912,'_technology_1_title_technology','field_5d2f2748dcd06'),(14688,912,'technology_1_description_technology','The fastest way to complete all check-in steps and start your vacation sooner.'),(14689,912,'_technology_1_description_technology','field_5d2f2754dcd07'),(14690,912,'technology_2_title_technology','Daily Planner'),(14691,912,'_technology_2_title_technology','field_5d2f2748dcd06'),(14692,912,'technology_2_description_technology','Don\'t miss out on any great activities! Manage your vacation calendar with just a swipe or a tap.'),(14693,912,'_technology_2_description_technology','field_5d2f2754dcd07'),(14694,912,'technology_3_title_technology','Onboard Account'),(14695,912,'_technology_3_title_technology','field_5d2f2748dcd06'),(14696,912,'technology_3_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(14697,912,'_technology_3_description_technology','field_5d2f2754dcd07'),(14698,912,'technology','4'),(14699,912,'_technology','field_5d2f2738dcd05'),(14700,912,'discover_ship_title','Discover Celebrity Cruising'),(14701,912,'_discover_ship_title','field_5d2f2b854d072'),(14702,912,'discover_ship_text_link','Browse Summit Sailings'),(14703,912,'_discover_ship_text_link','field_5d4d727f27026'),(14704,912,'discover_ship_link','https://www.celebritycruises.com/cruise-ships/celebrity-summit'),(14705,912,'_discover_ship_link','field_5d2f2ba44d073'),(14706,912,'discover_ship_photo','914'),(14707,912,'_discover_ship_photo','field_5d2f2bbc4d075'),(14708,912,'gallery',''),(14709,912,'_gallery','field_5d2f2c89081ed'),(14714,913,'author_news','2'),(14715,913,'_author_news','field_5d3083fbbea51'),(14716,913,'select_brand','88'),(14717,913,'_select_brand','field_5d3084d736561'),(14718,913,'featured_post','1'),(14719,913,'_featured_post','field_5d30852c7c4e7'),(14720,913,'legend_featured_image','Neque porro quisquam est'),(14721,913,'_legend_featured_image','field_5d39e9d4ef8f8'),(14722,913,'select_posts_related',''),(14723,913,'_select_posts_related','field_5d3afdcff5db7'),(14724,913,'archive_audio_mp3',''),(14725,913,'_archive_audio_mp3','field_5d4989a80007c'),(14726,913,'url_video',''),(14727,913,'_url_video','field_5d49897521f43'),(14728,913,'media_assets',''),(14729,913,'_media_assets','field_5d72c2c090478'),(14730,913,'media_assets_archive_zip',''),(14731,913,'_media_assets_archive_zip','field_5d768ad62c946'),(14732,914,'_wp_attached_file','2019/09/SM-post-dry-dock-7-o-clock-exterior-aerial-aerials.jpg'),(14733,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2221;s:6:\"height\";i:1599;s:4:\"file\";s:62:\"2019/09/SM-post-dry-dock-7-o-clock-exterior-aerial-aerials.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:63:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:62:\"SM-post-dry-dock-7-o-clock-exterior-aerial-aerials-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Michel Verdure\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:28:\"Summit sailing in the water.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"Celebrity Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:28:\"Summit sailing in the water.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14734,915,'_wp_attached_file','2019/09/ZY-Video-2019-07-11-00000080.00_00_22_04.Still002.jpg'),(14735,915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:61:\"2019/09/ZY-Video-2019-07-11-00000080.00_00_22_04.Still002.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_22_04.Still002-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14736,916,'hero_section_title','Frequenty asked questions'),(14737,916,'_hero_section_title','field_5d55a345f8cdb'),(14738,916,'hero_section_image','915'),(14739,916,'_hero_section_image','field_5d55a424f8cdc'),(14740,916,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14741,916,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14742,916,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14743,916,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14744,916,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14745,916,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14746,916,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14747,916,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14748,916,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14749,916,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14750,916,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14751,916,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14752,916,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14753,916,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(14754,916,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(14755,916,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(14756,916,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14757,916,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(14758,916,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(14759,916,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(14760,916,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14761,916,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(14762,916,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(14763,916,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(14764,916,'hero_section_links','6'),(14765,916,'_hero_section_links','field_5d55a451f8cdd'),(14766,916,'popular_features_title','Popular Features'),(14767,916,'_popular_features_title','field_5d55abb7ffa2d'),(14768,916,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(14769,916,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(14770,916,'popular_features_links_0_popular_features_link_title','Ships'),(14771,916,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(14772,916,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14773,916,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(14774,916,'popular_features_links_1_popular_features_link_title','Guest Account'),(14775,916,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(14776,916,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(14777,916,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(14778,916,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(14779,916,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(14780,916,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14781,916,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(14782,916,'popular_features_links_3_popular_features_link_title','Check-in'),(14783,916,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(14784,916,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(14785,916,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(14786,916,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(14787,916,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(14788,916,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14789,916,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(14790,916,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(14791,916,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(14792,916,'popular_features_links','6'),(14793,916,'_popular_features_links','field_5d55ac6b2b75e'),(14794,916,'helpful_articles_title','Helpful articles and how-to\'s'),(14795,916,'_helpful_articles_title','field_5d55b136c34eb'),(14796,916,'post_image_right_title','Solving for the future of cruising.'),(14797,916,'_post_image_right_title','field_5d55b49247b3a'),(14798,916,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14799,916,'_post_image_right_description','field_5d55b49b47b3b'),(14800,916,'post_image_right_title_link','Learn more'),(14801,916,'_post_image_right_title_link','field_5d55b4a747b3c'),(14802,916,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14803,916,'_post_image_right_link','field_5d55b4b247b3d'),(14804,916,'post_image_right_image','527'),(14805,916,'_post_image_right_image','field_5d55b4be47b3e'),(14806,916,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(14807,916,'_post_image_left_title','field_5d55b69a7e8a7'),(14808,916,'post_image_left_link','https://vimeo.com/'),(14809,916,'_post_image_left_link','field_5d55b6a47e8a8'),(14810,916,'post_image_left_image','536'),(14811,916,'_post_image_left_image','field_5d55b6b47e8a9'),(14812,916,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(14813,916,'_select_posts','field_5d55ba1e32eec'),(14814,916,'seletc_type_link','Vídeo'),(14815,916,'_seletc_type_link','field_5d57093fdc431'),(14816,916,'post_image_left_id_video','344894438'),(14817,916,'_post_image_left_id_video','field_5d570987dc432'),(14818,917,'hero_section_title','Frequenty asked questions'),(14819,917,'_hero_section_title','field_5d55a345f8cdb'),(14820,917,'hero_section_image','869'),(14821,917,'_hero_section_image','field_5d55a424f8cdc'),(14822,917,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14823,917,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14824,917,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14825,917,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14826,917,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14827,917,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14828,917,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14829,917,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14830,917,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14831,917,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14832,917,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14833,917,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14834,917,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14835,917,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(14836,917,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(14837,917,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(14838,917,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14839,917,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(14840,917,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(14841,917,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(14842,917,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14843,917,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(14844,917,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(14845,917,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(14846,917,'hero_section_links','6'),(14847,917,'_hero_section_links','field_5d55a451f8cdd'),(14848,917,'popular_features_title','Popular Features'),(14849,917,'_popular_features_title','field_5d55abb7ffa2d'),(14850,917,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(14851,917,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(14852,917,'popular_features_links_0_popular_features_link_title','Ships'),(14853,917,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(14854,917,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14855,917,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(14856,917,'popular_features_links_1_popular_features_link_title','Guest Account'),(14857,917,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(14858,917,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(14859,917,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(14860,917,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(14861,917,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(14862,917,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14863,917,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(14864,917,'popular_features_links_3_popular_features_link_title','Check-in'),(14865,917,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(14866,917,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(14867,917,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(14868,917,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(14869,917,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(14870,917,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14871,917,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(14872,917,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(14873,917,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(14874,917,'popular_features_links','6'),(14875,917,'_popular_features_links','field_5d55ac6b2b75e'),(14876,917,'helpful_articles_title','Helpful articles and how-to\'s'),(14877,917,'_helpful_articles_title','field_5d55b136c34eb'),(14878,917,'post_image_right_title','Solving for the future of cruising.'),(14879,917,'_post_image_right_title','field_5d55b49247b3a'),(14880,917,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14881,917,'_post_image_right_description','field_5d55b49b47b3b'),(14882,917,'post_image_right_title_link','Learn more'),(14883,917,'_post_image_right_title_link','field_5d55b4a747b3c'),(14884,917,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14885,917,'_post_image_right_link','field_5d55b4b247b3d'),(14886,917,'post_image_right_image','527'),(14887,917,'_post_image_right_image','field_5d55b4be47b3e'),(14888,917,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(14889,917,'_post_image_left_title','field_5d55b69a7e8a7'),(14890,917,'post_image_left_link','https://vimeo.com/'),(14891,917,'_post_image_left_link','field_5d55b6a47e8a8'),(14892,917,'post_image_left_image','536'),(14893,917,'_post_image_left_image','field_5d55b6b47e8a9'),(14894,917,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(14895,917,'_select_posts','field_5d55ba1e32eec'),(14896,917,'seletc_type_link','Vídeo'),(14897,917,'_seletc_type_link','field_5d57093fdc431'),(14898,917,'post_image_left_id_video','344894438'),(14899,917,'_post_image_left_id_video','field_5d570987dc432'),(14900,918,'hero_section_title','Frequenty asked questions'),(14901,918,'_hero_section_title','field_5d55a345f8cdb'),(14902,918,'hero_section_image','600'),(14903,918,'_hero_section_image','field_5d55a424f8cdc'),(14904,918,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14905,918,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14906,918,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14907,918,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14908,918,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14909,918,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14910,918,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14911,918,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14912,918,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14913,918,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14914,918,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14915,918,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14916,918,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14917,918,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(14918,918,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(14919,918,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(14920,918,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14921,918,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(14922,918,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(14923,918,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(14924,918,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(14925,918,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(14926,918,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(14927,918,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(14928,918,'hero_section_links','6'),(14929,918,'_hero_section_links','field_5d55a451f8cdd'),(14930,918,'popular_features_title','Popular Features'),(14931,918,'_popular_features_title','field_5d55abb7ffa2d'),(14932,918,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/reflection/'),(14933,918,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(14934,918,'popular_features_links_0_popular_features_link_title','Ships'),(14935,918,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(14936,918,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14937,918,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(14938,918,'popular_features_links_1_popular_features_link_title','Guest Account'),(14939,918,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(14940,918,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(14941,918,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(14942,918,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(14943,918,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(14944,918,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(14945,918,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(14946,918,'popular_features_links_3_popular_features_link_title','Check-in'),(14947,918,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(14948,918,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(14949,918,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(14950,918,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(14951,918,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(14952,918,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14953,918,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(14954,918,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(14955,918,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(14956,918,'popular_features_links','6'),(14957,918,'_popular_features_links','field_5d55ac6b2b75e'),(14958,918,'helpful_articles_title','Helpful articles and how-to\'s'),(14959,918,'_helpful_articles_title','field_5d55b136c34eb'),(14960,918,'post_image_right_title','Solving for the future of cruising.'),(14961,918,'_post_image_right_title','field_5d55b49247b3a'),(14962,918,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(14963,918,'_post_image_right_description','field_5d55b49b47b3b'),(14964,918,'post_image_right_title_link','Learn more'),(14965,918,'_post_image_right_title_link','field_5d55b4a747b3c'),(14966,918,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(14967,918,'_post_image_right_link','field_5d55b4b247b3d'),(14968,918,'post_image_right_image','527'),(14969,918,'_post_image_right_image','field_5d55b4be47b3e'),(14970,918,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(14971,918,'_post_image_left_title','field_5d55b69a7e8a7'),(14972,918,'post_image_left_link','https://vimeo.com/'),(14973,918,'_post_image_left_link','field_5d55b6a47e8a8'),(14974,918,'post_image_left_image','536'),(14975,918,'_post_image_left_image','field_5d55b6b47e8a9'),(14976,918,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(14977,918,'_select_posts','field_5d55ba1e32eec'),(14978,918,'seletc_type_link','Vídeo'),(14979,918,'_seletc_type_link','field_5d57093fdc431'),(14980,918,'post_image_left_id_video','344894438'),(14981,918,'_post_image_left_id_video','field_5d570987dc432'),(14982,919,'hero_section_title','Frequenty asked questions'),(14983,919,'_hero_section_title','field_5d55a345f8cdb'),(14984,919,'hero_section_image','600'),(14985,919,'_hero_section_image','field_5d55a424f8cdc'),(14986,919,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(14987,919,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(14988,919,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(14989,919,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(14990,919,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(14991,919,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(14992,919,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(14993,919,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(14994,919,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(14995,919,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(14996,919,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(14997,919,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(14998,919,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(14999,919,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(15000,919,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(15001,919,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(15002,919,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15003,919,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(15004,919,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(15005,919,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(15006,919,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(15007,919,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(15008,919,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(15009,919,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(15010,919,'hero_section_links','6'),(15011,919,'_hero_section_links','field_5d55a451f8cdd'),(15012,919,'popular_features_title','Popular Features'),(15013,919,'_popular_features_title','field_5d55abb7ffa2d'),(15014,919,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(15015,919,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(15016,919,'popular_features_links_0_popular_features_link_title','Ships'),(15017,919,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(15018,919,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15019,919,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(15020,919,'popular_features_links_1_popular_features_link_title','Guest Account'),(15021,919,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(15022,919,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(15023,919,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(15024,919,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(15025,919,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(15026,919,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15027,919,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(15028,919,'popular_features_links_3_popular_features_link_title','Check-in'),(15029,919,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(15030,919,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(15031,919,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(15032,919,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(15033,919,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(15034,919,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15035,919,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(15036,919,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(15037,919,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(15038,919,'popular_features_links','6'),(15039,919,'_popular_features_links','field_5d55ac6b2b75e'),(15040,919,'helpful_articles_title','Helpful articles and how-to\'s'),(15041,919,'_helpful_articles_title','field_5d55b136c34eb'),(15042,919,'post_image_right_title','Solving for the future of cruising.'),(15043,919,'_post_image_right_title','field_5d55b49247b3a'),(15044,919,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15045,919,'_post_image_right_description','field_5d55b49b47b3b'),(15046,919,'post_image_right_title_link','Learn more'),(15047,919,'_post_image_right_title_link','field_5d55b4a747b3c'),(15048,919,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15049,919,'_post_image_right_link','field_5d55b4b247b3d'),(15050,919,'post_image_right_image','527'),(15051,919,'_post_image_right_image','field_5d55b4be47b3e'),(15052,919,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(15053,919,'_post_image_left_title','field_5d55b69a7e8a7'),(15054,919,'post_image_left_link','https://vimeo.com/'),(15055,919,'_post_image_left_link','field_5d55b6a47e8a8'),(15056,919,'post_image_left_image','536'),(15057,919,'_post_image_left_image','field_5d55b6b47e8a9'),(15058,919,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(15059,919,'_select_posts','field_5d55ba1e32eec'),(15060,919,'seletc_type_link','Vídeo'),(15061,919,'_seletc_type_link','field_5d57093fdc431'),(15062,919,'post_image_left_id_video','344894438'),(15063,919,'_post_image_left_id_video','field_5d570987dc432'),(15064,920,'hero_section_title','Frequenty asked questions'),(15065,920,'_hero_section_title','field_5d55a345f8cdb'),(15066,920,'hero_section_image','600'),(15067,920,'_hero_section_image','field_5d55a424f8cdc'),(15068,920,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15069,920,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(15070,920,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(15071,920,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(15072,920,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(15073,920,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(15074,920,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(15075,920,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(15076,920,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(15077,920,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(15078,920,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(15079,920,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(15080,920,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15081,920,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(15082,920,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(15083,920,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(15084,920,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15085,920,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(15086,920,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(15087,920,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(15088,920,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(15089,920,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(15090,920,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(15091,920,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(15092,920,'hero_section_links','6'),(15093,920,'_hero_section_links','field_5d55a451f8cdd'),(15094,920,'popular_features_title','Popular Features'),(15095,920,'_popular_features_title','field_5d55abb7ffa2d'),(15096,920,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(15097,920,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(15098,920,'popular_features_links_0_popular_features_link_title','Ships'),(15099,920,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(15100,920,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15101,920,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(15102,920,'popular_features_links_1_popular_features_link_title','Guest Account'),(15103,920,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(15104,920,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(15105,920,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(15106,920,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(15107,920,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(15108,920,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15109,920,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(15110,920,'popular_features_links_3_popular_features_link_title','Check-in'),(15111,920,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(15112,920,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(15113,920,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(15114,920,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(15115,920,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(15116,920,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15117,920,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(15118,920,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(15119,920,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(15120,920,'popular_features_links','6'),(15121,920,'_popular_features_links','field_5d55ac6b2b75e'),(15122,920,'helpful_articles_title','Helpful articles and how-to\'s'),(15123,920,'_helpful_articles_title','field_5d55b136c34eb'),(15124,920,'post_image_right_title','Solving for the future of cruising.'),(15125,920,'_post_image_right_title','field_5d55b49247b3a'),(15126,920,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15127,920,'_post_image_right_description','field_5d55b49b47b3b'),(15128,920,'post_image_right_title_link','Learn more'),(15129,920,'_post_image_right_title_link','field_5d55b4a747b3c'),(15130,920,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15131,920,'_post_image_right_link','field_5d55b4b247b3d'),(15132,920,'post_image_right_image','527'),(15133,920,'_post_image_right_image','field_5d55b4be47b3e'),(15134,920,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(15135,920,'_post_image_left_title','field_5d55b69a7e8a7'),(15136,920,'post_image_left_link','https://vimeo.com/'),(15137,920,'_post_image_left_link','field_5d55b6a47e8a8'),(15138,920,'post_image_left_image','536'),(15139,920,'_post_image_left_image','field_5d55b6b47e8a9'),(15140,920,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(15141,920,'_select_posts','field_5d55ba1e32eec'),(15142,920,'seletc_type_link','Vídeo'),(15143,920,'_seletc_type_link','field_5d57093fdc431'),(15144,920,'post_image_left_id_video','344894438'),(15145,920,'_post_image_left_id_video','field_5d570987dc432'),(15146,921,'_wp_attached_file','2019/09/1565293392977.png'),(15147,921,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:588;s:4:\"file\";s:25:\"2019/09/1565293392977.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"1565293392977-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"1565293392977-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"1565293392977-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"1565293392977-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"1565293392977-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"1565293392977-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"1565293392977-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"1565293392977-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"1565293392977-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"1565293392977-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"1565293392977-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"1565293392977-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"1565293392977-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15148,922,'_wp_attached_file','2019/09/1565293407614.png'),(15149,922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:588;s:4:\"file\";s:25:\"2019/09/1565293407614.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"1565293407614-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"1565293407614-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"1565293407614-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:26:\"1565293407614-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:25:\"1565293407614-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:26:\"1565293407614-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:25:\"1565293407614-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:25:\"1565293407614-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:26:\"1565293407614-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:25:\"1565293407614-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:25:\"1565293407614-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:26:\"1565293407614-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:25:\"1565293407614-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15150,923,'_wp_attached_file','2019/09/KD_ConstellationOfTheSeas_Top_747x2048.png'),(15151,923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2019/09/KD_ConstellationOfTheSeas_Top_747x2048.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"KD_ConstellationOfTheSeas_Top_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"KD_ConstellationOfTheSeas_Top_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"KD_ConstellationOfTheSeas_Top_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;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:{}}}'),(15152,924,'_wp_attached_file','2019/09/KD_Equinox_Top_747x2048.png'),(15153,924,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2019/09/KD_Equinox_Top_747x2048.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KD_Equinox_Top_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KD_Equinox_Top_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KD_Equinox_Top_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;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:{}}}'),(15154,925,'_wp_attached_file','2019/09/KD_ReflectionOfTheSeas_Top_747x2048.png'),(15155,925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:47:\"2019/09/KD_ReflectionOfTheSeas_Top_747x2048.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:48:\"KD_ReflectionOfTheSeas_Top_747x2048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:47:\"KD_ReflectionOfTheSeas_Top_747x2048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15156,926,'_wp_attached_file','2019/09/Quantum_Daytime_Delivery-v01_747x2048.png'),(15157,926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:49:\"2019/09/Quantum_Daytime_Delivery-v01_747x2048.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:50:\"Quantum_Daytime_Delivery-v01_747x2048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:49:\"Quantum_Daytime_Delivery-v01_747x2048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15158,928,'_edit_lock','1595459347:9'),(15159,928,'_edit_last','2'),(15160,929,'_wp_attached_file','2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg'),(15161,929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5334;s:6:\"height\";i:3840;s:4:\"file\";s:77:\"2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:78:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:77:\"QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(15162,928,'select_brand','144'),(15163,928,'_select_brand','field_5d2cda81bbd5a'),(15164,928,'subtitle_ship','Quantum of the Seas'),(15165,928,'_subtitle_ship','field_5d2ce1bd8774a'),(15166,928,'description_ship','Designed with our Chinese guests in mind, Quantum of the Seas® is a fully immersive ship, complete with Mandarin speaking crew and local cuisines served onboard.'),(15167,928,'_description_ship','field_5d2ce1f38774b'),(15168,928,'title_brand_ship','Quantum of the Seas'),(15169,928,'_title_brand_ship','field_5d2f247516989'),(15170,928,'description_brand_ship','With more sea days, you’ll have more time to discover all that this vacation visionary has to offer. And you can share it all in real-time with VOOM®, the fastest internet at sea.'),(15171,928,'_description_brand_ship','field_5d2f24851698a'),(15172,928,'photo_ship','926'),(15173,928,'_photo_ship','field_5d2f24901698b'),(15174,928,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(15175,928,'_link_appstore','field_5d2f2772dcd08'),(15176,928,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_USq'),(15177,928,'_link_playstore','field_5d2f277fdcd09'),(15178,928,'technology_0_title_technology','Mobile App'),(15179,928,'_technology_0_title_technology','field_5d2f2748dcd06'),(15180,928,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(15181,928,'_technology_0_description_technology','field_5d2f2754dcd07'),(15182,928,'technology_1_title_technology','Onboard Account'),(15183,928,'_technology_1_title_technology','field_5d2f2748dcd06'),(15184,928,'technology_1_description_technology','Quickly and easily monitor and track real-time onboard charges to your account.'),(15185,928,'_technology_1_description_technology','field_5d2f2754dcd07'),(15186,928,'technology_2_title_technology','Reservations'),(15187,928,'_technology_2_title_technology','field_5d2f2748dcd06'),(15188,928,'technology_2_description_technology','Make dining, shore excursion, and show reservations onboard, right from the app.'),(15189,928,'_technology_2_description_technology','field_5d2f2754dcd07'),(15190,928,'technology','3'),(15191,928,'_technology','field_5d2f2738dcd05'),(15192,928,'discover_ship_title','Discover Royal Caribbean Cruising'),(15193,928,'_discover_ship_title','field_5d2f2b854d072'),(15194,928,'discover_ship_text_link','Browse Quantum Sailings'),(15195,928,'_discover_ship_text_link','field_5d4d727f27026'),(15196,928,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/quantum-of-the-seas'),(15197,928,'_discover_ship_link','field_5d2f2ba44d073'),(15198,928,'discover_ship_photo','929'),(15199,928,'_discover_ship_photo','field_5d2f2bbc4d075'),(15200,928,'gallery',''),(15201,928,'_gallery','field_5d2f2c89081ed'),(15206,930,'author_news','2'),(15207,930,'_author_news','field_5d3083fbbea51'),(15208,930,'select_brand','88'),(15209,930,'_select_brand','field_5d3084d736561'),(15210,930,'featured_post','1'),(15211,930,'_featured_post','field_5d30852c7c4e7'),(15212,930,'legend_featured_image','Neque porro quisquam est'),(15213,930,'_legend_featured_image','field_5d39e9d4ef8f8'),(15214,930,'select_posts_related',''),(15215,930,'_select_posts_related','field_5d3afdcff5db7'),(15216,930,'archive_audio_mp3',''),(15217,930,'_archive_audio_mp3','field_5d4989a80007c'),(15218,930,'url_video',''),(15219,930,'_url_video','field_5d49897521f43'),(15220,930,'media_assets',''),(15221,930,'_media_assets','field_5d72c2c090478'),(15222,930,'media_assets_archive_zip',''),(15223,930,'_media_assets_archive_zip','field_5d768ad62c946'),(15224,869,'_wp_attachment_backup_sizes','a:16:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:4:\"file\";s:53:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"featured-index-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"related-index-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"featured-archive-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"related-archive-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"list-archive-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"featured-single-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"featured-faq-small-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"featured-faq-learn-orig\";a:4:{s:4:\"file\";s:62:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"featured-faq-list-orig\";a:4:{s:4:\"file\";s:61:\"ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(15225,931,'title_hero','Solving for the<br> digital future of<br> cruising'),(15226,931,'_title_hero','field_5d2cbfcfc7b2b'),(15227,931,'title_quote','Tech that'),(15228,931,'_title_quote','field_5d2cc09b51dfa'),(15229,931,'title_strong_quote','ships'),(15230,931,'_title_strong_quote','field_5d2cc0db51dfc'),(15231,931,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(15232,931,'_description_quote','field_5d2cc0a851dfb'),(15233,931,'imagem_quote','45'),(15234,931,'_imagem_quote','field_5d2cc0ed51dfd'),(15235,931,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(15236,931,'_description_blockquote','field_5d2cc22c9da9a'),(15237,931,'author_blockquote','Richard Fain, in an interview with'),(15238,931,'_author_blockquote','field_5d2cc25a9da9b'),(15239,931,'company','TechRepublic'),(15240,931,'_company','field_5d2cc2769da9c'),(15241,931,'company_blockquote','TechRepublic'),(15242,931,'_company_blockquote','field_5d2cc2769da9c'),(15243,931,'title_featured_i','Self serving'),(15244,931,'_title_featured_i','field_5d2cc41890f84'),(15245,931,'description_featured_i','All you need to begin the check-in process is a smile.'),(15246,931,'_description_featured_i','field_5d2cc42890f85'),(15247,931,'seletc_type_link_featured_i','Link'),(15248,931,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(15249,931,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(15250,931,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(15251,931,'imagem_featured_i','361'),(15252,931,'_imagem_featured_i','field_5d2cc71559443'),(15253,931,'title_info_numbers','Digital by<br> the numbers'),(15254,931,'_title_info_numbers','field_5d2cc7e517635'),(15255,931,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(15256,931,'_description_info_number','field_5d2cc7f817636'),(15257,931,'app_downloads','3M'),(15258,931,'_app_downloads','field_5d2cc83e17637'),(15259,931,'active_users','1M'),(15260,931,'_active_users','field_5d2cc84617638'),(15261,931,'average_ios_rating','4.6'),(15262,931,'_average_ios_rating','field_5d2cc85217639'),(15263,931,'crew_checkins','14k'),(15264,931,'_crew_checkins','field_5d2cc8631763a'),(15265,931,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(15266,931,'_title_featured_ii','field_5d2cc9741153c'),(15267,931,'description_featured_ii',''),(15268,931,'_description_featured_ii','field_5d2cc97e1153d'),(15269,931,'imagem_featured_ii','45'),(15270,931,'_imagem_featured_ii','field_5d2cc98c1153e'),(15271,931,'seletc_type_link_featured_ii','Link'),(15272,931,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(15273,931,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(15274,931,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(15275,931,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(15276,931,'_title_featured_iii','field_5d2ccafff022a'),(15277,931,'description_featured_iii',''),(15278,931,'_description_featured_iii','field_5d2ccb0cf022b'),(15279,931,'imagem_featured_iii','862'),(15280,931,'_imagem_featured_iii','field_5d2ccb21f022c'),(15281,931,'seletc_type_link_featured_iii','Vídeo'),(15282,931,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(15283,931,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(15284,931,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(15285,931,'subtitle_hero','Our guests often ask…'),(15286,931,'_subtitle_hero','field_5d5711764ff01'),(15287,931,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15288,931,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(15289,931,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(15290,931,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(15291,931,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15292,931,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(15293,931,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(15294,931,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(15295,931,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(15296,931,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(15297,931,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(15298,931,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(15299,931,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(15300,931,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(15301,931,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(15302,931,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(15303,931,'hero_section_links_4_hero_section_link',''),(15304,931,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(15305,931,'hero_section_links_4_hero_section_link_title',''),(15306,931,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(15307,931,'hero_section_links_5_hero_section_link',''),(15308,931,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(15309,931,'hero_section_links_5_hero_section_link_title',''),(15310,931,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(15311,931,'hero_section_links','6'),(15312,931,'_hero_section_links','field_5d5711cf21851'),(15313,931,'featured_faq_title','Solving the digital future of cruising.'),(15314,931,'_featured_faq_title','field_5d57145bc652e'),(15315,931,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15316,931,'_featured_faq_description','field_5d57146bc652f'),(15317,931,'featured_faq_link','http://royaldigital.labcp.co/'),(15318,931,'_featured_faq_link','field_5d57147ec6530'),(15319,931,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/millenium/'),(15320,931,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(15321,931,'popular_features_links_0_popular_features_link_title','Ships'),(15322,931,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(15323,931,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15324,931,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(15325,931,'popular_features_links_1_popular_features_link_title','Check-in'),(15326,931,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(15327,931,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15328,931,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(15329,931,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(15330,931,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(15331,931,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15332,931,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(15333,931,'popular_features_links_3_popular_features_link_title','Guest Account'),(15334,931,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(15335,931,'popular_features_links','4'),(15336,931,'_popular_features_links','field_5d5714d1c6531'),(15337,931,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(15338,931,'_link_explore_our_fleet','field_5d77a90f09145'),(15339,931,'image_explore_our_fleet','908'),(15340,931,'_image_explore_our_fleet','field_5d77a96009146'),(15341,931,'title_explore_our_fleet','Need to find your ship?'),(15342,931,'_title_explore_our_fleet','field_5d77a97809147'),(15343,931,'subtitle_explore_our_fleet','Explore our fleet'),(15344,931,'_subtitle_explore_our_fleet','field_5d77a98709148'),(15345,932,'title_hero','Solving for the<br> digital future of<br> cruising'),(15346,932,'_title_hero','field_5d2cbfcfc7b2b'),(15347,932,'title_quote','Tech that'),(15348,932,'_title_quote','field_5d2cc09b51dfa'),(15349,932,'title_strong_quote','ships'),(15350,932,'_title_strong_quote','field_5d2cc0db51dfc'),(15351,932,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(15352,932,'_description_quote','field_5d2cc0a851dfb'),(15353,932,'imagem_quote','45'),(15354,932,'_imagem_quote','field_5d2cc0ed51dfd'),(15355,932,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(15356,932,'_description_blockquote','field_5d2cc22c9da9a'),(15357,932,'author_blockquote','Richard Fain, in an interview with'),(15358,932,'_author_blockquote','field_5d2cc25a9da9b'),(15359,932,'company','TechRepublic'),(15360,932,'_company','field_5d2cc2769da9c'),(15361,932,'company_blockquote','TechRepublic'),(15362,932,'_company_blockquote','field_5d2cc2769da9c'),(15363,932,'title_featured_i','Self serving'),(15364,932,'_title_featured_i','field_5d2cc41890f84'),(15365,932,'description_featured_i','All you need to begin the check-in process is a smile.'),(15366,932,'_description_featured_i','field_5d2cc42890f85'),(15367,932,'seletc_type_link_featured_i','Link'),(15368,932,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(15369,932,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(15370,932,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(15371,932,'imagem_featured_i','361'),(15372,932,'_imagem_featured_i','field_5d2cc71559443'),(15373,932,'title_info_numbers','Digital by<br> the numbers'),(15374,932,'_title_info_numbers','field_5d2cc7e517635'),(15375,932,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(15376,932,'_description_info_number','field_5d2cc7f817636'),(15377,932,'app_downloads','3M'),(15378,932,'_app_downloads','field_5d2cc83e17637'),(15379,932,'active_users','1M'),(15380,932,'_active_users','field_5d2cc84617638'),(15381,932,'average_ios_rating','4.6'),(15382,932,'_average_ios_rating','field_5d2cc85217639'),(15383,932,'crew_checkins','14k'),(15384,932,'_crew_checkins','field_5d2cc8631763a'),(15385,932,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(15386,932,'_title_featured_ii','field_5d2cc9741153c'),(15387,932,'description_featured_ii',''),(15388,932,'_description_featured_ii','field_5d2cc97e1153d'),(15389,932,'imagem_featured_ii','45'),(15390,932,'_imagem_featured_ii','field_5d2cc98c1153e'),(15391,932,'seletc_type_link_featured_ii','Link'),(15392,932,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(15393,932,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/post-test-title/'),(15394,932,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(15395,932,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(15396,932,'_title_featured_iii','field_5d2ccafff022a'),(15397,932,'description_featured_iii',''),(15398,932,'_description_featured_iii','field_5d2ccb0cf022b'),(15399,932,'imagem_featured_iii','862'),(15400,932,'_imagem_featured_iii','field_5d2ccb21f022c'),(15401,932,'seletc_type_link_featured_iii','Vídeo'),(15402,932,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(15403,932,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(15404,932,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(15405,932,'subtitle_hero','Our guests often ask…'),(15406,932,'_subtitle_hero','field_5d5711764ff01'),(15407,932,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15408,932,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(15409,932,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(15410,932,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(15411,932,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15412,932,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(15413,932,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(15414,932,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(15415,932,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(15416,932,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(15417,932,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(15418,932,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(15419,932,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(15420,932,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(15421,932,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(15422,932,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(15423,932,'hero_section_links_4_hero_section_link',''),(15424,932,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(15425,932,'hero_section_links_4_hero_section_link_title',''),(15426,932,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(15427,932,'hero_section_links_5_hero_section_link',''),(15428,932,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(15429,932,'hero_section_links_5_hero_section_link_title',''),(15430,932,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(15431,932,'hero_section_links','6'),(15432,932,'_hero_section_links','field_5d5711cf21851'),(15433,932,'featured_faq_title','Solving the digital future of cruising.'),(15434,932,'_featured_faq_title','field_5d57145bc652e'),(15435,932,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15436,932,'_featured_faq_description','field_5d57146bc652f'),(15437,932,'featured_faq_link','http://royaldigital.labcp.co/'),(15438,932,'_featured_faq_link','field_5d57147ec6530'),(15439,932,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/edge/'),(15440,932,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(15441,932,'popular_features_links_0_popular_features_link_title','Ships'),(15442,932,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(15443,932,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15444,932,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(15445,932,'popular_features_links_1_popular_features_link_title','Check-in'),(15446,932,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(15447,932,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15448,932,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(15449,932,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(15450,932,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(15451,932,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15452,932,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(15453,932,'popular_features_links_3_popular_features_link_title','Guest Account'),(15454,932,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(15455,932,'popular_features_links','4'),(15456,932,'_popular_features_links','field_5d5714d1c6531'),(15457,932,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(15458,932,'_link_explore_our_fleet','field_5d77a90f09145'),(15459,932,'image_explore_our_fleet','908'),(15460,932,'_image_explore_our_fleet','field_5d77a96009146'),(15461,932,'title_explore_our_fleet','Need to find your ship?'),(15462,932,'_title_explore_our_fleet','field_5d77a97809147'),(15463,932,'subtitle_explore_our_fleet','Explore our fleet'),(15464,932,'_subtitle_explore_our_fleet','field_5d77a98709148'),(15465,933,'_wp_attached_file','2019/09/KD_Azamara_Pursuit_Top_747x2048.png'),(15466,933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:43:\"2019/09/KD_Azamara_Pursuit_Top_747x2048.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:44:\"KD_Azamara_Pursuit_Top_747x2048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:43:\"KD_Azamara_Pursuit_Top_747x2048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15467,934,'title_hero','Solving for the<br> digital future of<br> cruising'),(15468,934,'_title_hero','field_5d2cbfcfc7b2b'),(15469,934,'title_quote','Tech that'),(15470,934,'_title_quote','field_5d2cc09b51dfa'),(15471,934,'title_strong_quote','ships'),(15472,934,'_title_strong_quote','field_5d2cc0db51dfc'),(15473,934,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(15474,934,'_description_quote','field_5d2cc0a851dfb'),(15475,934,'imagem_quote','45'),(15476,934,'_imagem_quote','field_5d2cc0ed51dfd'),(15477,934,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(15478,934,'_description_blockquote','field_5d2cc22c9da9a'),(15479,934,'author_blockquote','Richard Fain, in an interview with'),(15480,934,'_author_blockquote','field_5d2cc25a9da9b'),(15481,934,'company','TechRepublic'),(15482,934,'_company','field_5d2cc2769da9c'),(15483,934,'company_blockquote','TechRepublic'),(15484,934,'_company_blockquote','field_5d2cc2769da9c'),(15485,934,'title_featured_i','Self serving'),(15486,934,'_title_featured_i','field_5d2cc41890f84'),(15487,934,'description_featured_i','All you need to begin the check-in process is a smile.'),(15488,934,'_description_featured_i','field_5d2cc42890f85'),(15489,934,'seletc_type_link_featured_i','Link'),(15490,934,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(15491,934,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(15492,934,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(15493,934,'imagem_featured_i','361'),(15494,934,'_imagem_featured_i','field_5d2cc71559443'),(15495,934,'title_info_numbers','Digital by<br> the numbers'),(15496,934,'_title_info_numbers','field_5d2cc7e517635'),(15497,934,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(15498,934,'_description_info_number','field_5d2cc7f817636'),(15499,934,'app_downloads','3M'),(15500,934,'_app_downloads','field_5d2cc83e17637'),(15501,934,'active_users','1M'),(15502,934,'_active_users','field_5d2cc84617638'),(15503,934,'average_ios_rating','4.6'),(15504,934,'_average_ios_rating','field_5d2cc85217639'),(15505,934,'crew_checkins','14k'),(15506,934,'_crew_checkins','field_5d2cc8631763a'),(15507,934,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(15508,934,'_title_featured_ii','field_5d2cc9741153c'),(15509,934,'description_featured_ii',''),(15510,934,'_description_featured_ii','field_5d2cc97e1153d'),(15511,934,'imagem_featured_ii','45'),(15512,934,'_imagem_featured_ii','field_5d2cc98c1153e'),(15513,934,'seletc_type_link_featured_ii','Link'),(15514,934,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(15515,934,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(15516,934,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(15517,934,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(15518,934,'_title_featured_iii','field_5d2ccafff022a'),(15519,934,'description_featured_iii',''),(15520,934,'_description_featured_iii','field_5d2ccb0cf022b'),(15521,934,'imagem_featured_iii','862'),(15522,934,'_imagem_featured_iii','field_5d2ccb21f022c'),(15523,934,'seletc_type_link_featured_iii','Vídeo'),(15524,934,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(15525,934,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(15526,934,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(15527,934,'subtitle_hero','Our guests often ask…'),(15528,934,'_subtitle_hero','field_5d5711764ff01'),(15529,934,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15530,934,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(15531,934,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(15532,934,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(15533,934,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15534,934,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(15535,934,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(15536,934,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(15537,934,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(15538,934,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(15539,934,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(15540,934,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(15541,934,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(15542,934,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(15543,934,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(15544,934,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(15545,934,'hero_section_links_4_hero_section_link',''),(15546,934,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(15547,934,'hero_section_links_4_hero_section_link_title',''),(15548,934,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(15549,934,'hero_section_links_5_hero_section_link',''),(15550,934,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(15551,934,'hero_section_links_5_hero_section_link_title',''),(15552,934,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(15553,934,'hero_section_links','6'),(15554,934,'_hero_section_links','field_5d5711cf21851'),(15555,934,'featured_faq_title','Solving the digital future of cruising.'),(15556,934,'_featured_faq_title','field_5d57145bc652e'),(15557,934,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15558,934,'_featured_faq_description','field_5d57146bc652f'),(15559,934,'featured_faq_link','http://royaldigital.labcp.co/'),(15560,934,'_featured_faq_link','field_5d57147ec6530'),(15561,934,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/edge/'),(15562,934,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(15563,934,'popular_features_links_0_popular_features_link_title','Ships'),(15564,934,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(15565,934,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15566,934,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(15567,934,'popular_features_links_1_popular_features_link_title','Check-in'),(15568,934,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(15569,934,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15570,934,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(15571,934,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(15572,934,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(15573,934,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15574,934,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(15575,934,'popular_features_links_3_popular_features_link_title','Guest Account'),(15576,934,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(15577,934,'popular_features_links','4'),(15578,934,'_popular_features_links','field_5d5714d1c6531'),(15579,934,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(15580,934,'_link_explore_our_fleet','field_5d77a90f09145'),(15581,934,'image_explore_our_fleet','908'),(15582,934,'_image_explore_our_fleet','field_5d77a96009146'),(15583,934,'title_explore_our_fleet','Need to find your ship?'),(15584,934,'_title_explore_our_fleet','field_5d77a97809147'),(15585,934,'subtitle_explore_our_fleet','Explore our fleet'),(15586,934,'_subtitle_explore_our_fleet','field_5d77a98709148'),(15587,935,'title_hero','Solving for the<br> digital future of<br> cruising'),(15588,935,'_title_hero','field_5d2cbfcfc7b2b'),(15589,935,'title_quote','Tech that'),(15590,935,'_title_quote','field_5d2cc09b51dfa'),(15591,935,'title_strong_quote','ships'),(15592,935,'_title_strong_quote','field_5d2cc0db51dfc'),(15593,935,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(15594,935,'_description_quote','field_5d2cc0a851dfb'),(15595,935,'imagem_quote','45'),(15596,935,'_imagem_quote','field_5d2cc0ed51dfd'),(15597,935,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(15598,935,'_description_blockquote','field_5d2cc22c9da9a'),(15599,935,'author_blockquote','Richard Fain, in an interview with'),(15600,935,'_author_blockquote','field_5d2cc25a9da9b'),(15601,935,'company','TechRepublic'),(15602,935,'_company','field_5d2cc2769da9c'),(15603,935,'company_blockquote','TechRepublic'),(15604,935,'_company_blockquote','field_5d2cc2769da9c'),(15605,935,'title_featured_i','Self serving'),(15606,935,'_title_featured_i','field_5d2cc41890f84'),(15607,935,'description_featured_i','All you need to begin the check-in process is a smile.'),(15608,935,'_description_featured_i','field_5d2cc42890f85'),(15609,935,'seletc_type_link_featured_i','Link'),(15610,935,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(15611,935,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(15612,935,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(15613,935,'imagem_featured_i','361'),(15614,935,'_imagem_featured_i','field_5d2cc71559443'),(15615,935,'title_info_numbers','Digital by<br> the numbers'),(15616,935,'_title_info_numbers','field_5d2cc7e517635'),(15617,935,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(15618,935,'_description_info_number','field_5d2cc7f817636'),(15619,935,'app_downloads','3M'),(15620,935,'_app_downloads','field_5d2cc83e17637'),(15621,935,'active_users','1M'),(15622,935,'_active_users','field_5d2cc84617638'),(15623,935,'average_ios_rating','4.6'),(15624,935,'_average_ios_rating','field_5d2cc85217639'),(15625,935,'crew_checkins','14k'),(15626,935,'_crew_checkins','field_5d2cc8631763a'),(15627,935,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(15628,935,'_title_featured_ii','field_5d2cc9741153c'),(15629,935,'description_featured_ii',''),(15630,935,'_description_featured_ii','field_5d2cc97e1153d'),(15631,935,'imagem_featured_ii','45'),(15632,935,'_imagem_featured_ii','field_5d2cc98c1153e'),(15633,935,'seletc_type_link_featured_ii','Link'),(15634,935,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(15635,935,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(15636,935,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(15637,935,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(15638,935,'_title_featured_iii','field_5d2ccafff022a'),(15639,935,'description_featured_iii',''),(15640,935,'_description_featured_iii','field_5d2ccb0cf022b'),(15641,935,'imagem_featured_iii','862'),(15642,935,'_imagem_featured_iii','field_5d2ccb21f022c'),(15643,935,'seletc_type_link_featured_iii','Vídeo'),(15644,935,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(15645,935,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(15646,935,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(15647,935,'subtitle_hero','Our guests often ask…'),(15648,935,'_subtitle_hero','field_5d5711764ff01'),(15649,935,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15650,935,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(15651,935,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(15652,935,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(15653,935,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15654,935,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(15655,935,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(15656,935,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(15657,935,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(15658,935,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(15659,935,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(15660,935,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(15661,935,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/royal-caribbean-streamlines-boarding/'),(15662,935,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(15663,935,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(15664,935,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(15665,935,'hero_section_links_4_hero_section_link',''),(15666,935,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(15667,935,'hero_section_links_4_hero_section_link_title',''),(15668,935,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(15669,935,'hero_section_links_5_hero_section_link',''),(15670,935,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(15671,935,'hero_section_links_5_hero_section_link_title',''),(15672,935,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(15673,935,'hero_section_links','6'),(15674,935,'_hero_section_links','field_5d5711cf21851'),(15675,935,'featured_faq_title','Solving the digital future of cruising.'),(15676,935,'_featured_faq_title','field_5d57145bc652e'),(15677,935,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15678,935,'_featured_faq_description','field_5d57146bc652f'),(15679,935,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(15680,935,'_featured_faq_link','field_5d57147ec6530'),(15681,935,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/edge/'),(15682,935,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(15683,935,'popular_features_links_0_popular_features_link_title','Ships'),(15684,935,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(15685,935,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15686,935,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(15687,935,'popular_features_links_1_popular_features_link_title','Check-in'),(15688,935,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(15689,935,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15690,935,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(15691,935,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(15692,935,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(15693,935,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15694,935,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(15695,935,'popular_features_links_3_popular_features_link_title','Guest Account'),(15696,935,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(15697,935,'popular_features_links','4'),(15698,935,'_popular_features_links','field_5d5714d1c6531'),(15699,935,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(15700,935,'_link_explore_our_fleet','field_5d77a90f09145'),(15701,935,'image_explore_our_fleet','908'),(15702,935,'_image_explore_our_fleet','field_5d77a96009146'),(15703,935,'title_explore_our_fleet','Need to find your ship?'),(15704,935,'_title_explore_our_fleet','field_5d77a97809147'),(15705,935,'subtitle_explore_our_fleet','Explore our fleet'),(15706,935,'_subtitle_explore_our_fleet','field_5d77a98709148'),(15707,936,'hero_section_title','Frequently asked questions'),(15708,936,'_hero_section_title','field_5d55a345f8cdb'),(15709,936,'hero_section_image','600'),(15710,936,'_hero_section_image','field_5d55a424f8cdc'),(15711,936,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15712,936,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(15713,936,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(15714,936,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(15715,936,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(15716,936,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(15717,936,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(15718,936,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(15719,936,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(15720,936,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(15721,936,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(15722,936,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(15723,936,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15724,936,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(15725,936,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(15726,936,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(15727,936,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15728,936,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(15729,936,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(15730,936,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(15731,936,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(15732,936,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(15733,936,'hero_section_links_5_hero_section_link_title','How do reservations work in the app?'),(15734,936,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(15735,936,'hero_section_links','6'),(15736,936,'_hero_section_links','field_5d55a451f8cdd'),(15737,936,'popular_features_title','Popular Features'),(15738,936,'_popular_features_title','field_5d55abb7ffa2d'),(15739,936,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(15740,936,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(15741,936,'popular_features_links_0_popular_features_link_title','Ships'),(15742,936,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(15743,936,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15744,936,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(15745,936,'popular_features_links_1_popular_features_link_title','Guest Account'),(15746,936,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(15747,936,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(15748,936,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(15749,936,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(15750,936,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(15751,936,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15752,936,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(15753,936,'popular_features_links_3_popular_features_link_title','Check-in'),(15754,936,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(15755,936,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(15756,936,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(15757,936,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(15758,936,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(15759,936,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15760,936,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(15761,936,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(15762,936,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(15763,936,'popular_features_links','6'),(15764,936,'_popular_features_links','field_5d55ac6b2b75e'),(15765,936,'helpful_articles_title','Helpful articles and how-to\'s'),(15766,936,'_helpful_articles_title','field_5d55b136c34eb'),(15767,936,'post_image_right_title','Solving for the future of cruising.'),(15768,936,'_post_image_right_title','field_5d55b49247b3a'),(15769,936,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15770,936,'_post_image_right_description','field_5d55b49b47b3b'),(15771,936,'post_image_right_title_link','Learn more'),(15772,936,'_post_image_right_title_link','field_5d55b4a747b3c'),(15773,936,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15774,936,'_post_image_right_link','field_5d55b4b247b3d'),(15775,936,'post_image_right_image','527'),(15776,936,'_post_image_right_image','field_5d55b4be47b3e'),(15777,936,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(15778,936,'_post_image_left_title','field_5d55b69a7e8a7'),(15779,936,'post_image_left_link','https://vimeo.com/'),(15780,936,'_post_image_left_link','field_5d55b6a47e8a8'),(15781,936,'post_image_left_image','536'),(15782,936,'_post_image_left_image','field_5d55b6b47e8a9'),(15783,936,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(15784,936,'_select_posts','field_5d55ba1e32eec'),(15785,936,'seletc_type_link','Vídeo'),(15786,936,'_seletc_type_link','field_5d57093fdc431'),(15787,936,'post_image_left_id_video','344894438'),(15788,936,'_post_image_left_id_video','field_5d570987dc432'),(15791,938,'_wp_attached_file','2019/09/RC_SeaPass_Front_0919.png'),(15792,938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2500;s:4:\"file\";s:33:\"2019/09/RC_SeaPass_Front_0919.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-819x1024.png\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:34:\"RC_SeaPass_Front_0919-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:33:\"RC_SeaPass_Front_0919-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15793,939,'_wp_attached_file','2019/09/iOS_Native_EA_Platinum.png'),(15794,939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1125;s:6:\"height\";i:2436;s:4:\"file\";s:34:\"2019/09/iOS_Native_EA_Platinum.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-768x1663.png\";s:5:\"width\";i:768;s:6:\"height\";i:1663;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:35:\"iOS_Native_EA_Platinum-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:34:\"iOS_Native_EA_Platinum-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15795,940,'_wp_attached_file','2019/09/RC_SeaPass_Front_0919-1.png'),(15796,940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2500;s:4:\"file\";s:35:\"2019/09/RC_SeaPass_Front_0919-1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-819x1024.png\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:36:\"RC_SeaPass_Front_0919-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:35:\"RC_SeaPass_Front_0919-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(15797,941,'title_hero','Solving for the<br> digital future of<br> cruising'),(15798,941,'_title_hero','field_5d2cbfcfc7b2b'),(15799,941,'title_quote','Tech that'),(15800,941,'_title_quote','field_5d2cc09b51dfa'),(15801,941,'title_strong_quote','ships'),(15802,941,'_title_strong_quote','field_5d2cc0db51dfc'),(15803,941,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(15804,941,'_description_quote','field_5d2cc0a851dfb'),(15805,941,'imagem_quote','45'),(15806,941,'_imagem_quote','field_5d2cc0ed51dfd'),(15807,941,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(15808,941,'_description_blockquote','field_5d2cc22c9da9a'),(15809,941,'author_blockquote','Richard Fain, in an interview with'),(15810,941,'_author_blockquote','field_5d2cc25a9da9b'),(15811,941,'company','TechRepublic'),(15812,941,'_company','field_5d2cc2769da9c'),(15813,941,'company_blockquote','TechRepublic'),(15814,941,'_company_blockquote','field_5d2cc2769da9c'),(15815,941,'title_featured_i','Self serving'),(15816,941,'_title_featured_i','field_5d2cc41890f84'),(15817,941,'description_featured_i','All you need to begin the check-in process is a smile.'),(15818,941,'_description_featured_i','field_5d2cc42890f85'),(15819,941,'seletc_type_link_featured_i','Link'),(15820,941,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(15821,941,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(15822,941,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(15823,941,'imagem_featured_i','361'),(15824,941,'_imagem_featured_i','field_5d2cc71559443'),(15825,941,'title_info_numbers','Digital by<br> the numbers'),(15826,941,'_title_info_numbers','field_5d2cc7e517635'),(15827,941,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(15828,941,'_description_info_number','field_5d2cc7f817636'),(15829,941,'app_downloads','3M'),(15830,941,'_app_downloads','field_5d2cc83e17637'),(15831,941,'active_users','1M'),(15832,941,'_active_users','field_5d2cc84617638'),(15833,941,'average_ios_rating','4.6'),(15834,941,'_average_ios_rating','field_5d2cc85217639'),(15835,941,'crew_checkins','14k'),(15836,941,'_crew_checkins','field_5d2cc8631763a'),(15837,941,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(15838,941,'_title_featured_ii','field_5d2cc9741153c'),(15839,941,'description_featured_ii',''),(15840,941,'_description_featured_ii','field_5d2cc97e1153d'),(15841,941,'imagem_featured_ii','45'),(15842,941,'_imagem_featured_ii','field_5d2cc98c1153e'),(15843,941,'seletc_type_link_featured_ii','Link'),(15844,941,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(15845,941,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(15846,941,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(15847,941,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(15848,941,'_title_featured_iii','field_5d2ccafff022a'),(15849,941,'description_featured_iii',''),(15850,941,'_description_featured_iii','field_5d2ccb0cf022b'),(15851,941,'imagem_featured_iii','862'),(15852,941,'_imagem_featured_iii','field_5d2ccb21f022c'),(15853,941,'seletc_type_link_featured_iii','Vídeo'),(15854,941,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(15855,941,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(15856,941,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(15857,941,'subtitle_hero','Our guests often ask…'),(15858,941,'_subtitle_hero','field_5d5711764ff01'),(15859,941,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15860,941,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(15861,941,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(15862,941,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(15863,941,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15864,941,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(15865,941,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(15866,941,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(15867,941,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(15868,941,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(15869,941,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(15870,941,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(15871,941,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(15872,941,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(15873,941,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(15874,941,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(15875,941,'hero_section_links_4_hero_section_link',''),(15876,941,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(15877,941,'hero_section_links_4_hero_section_link_title',''),(15878,941,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(15879,941,'hero_section_links_5_hero_section_link',''),(15880,941,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(15881,941,'hero_section_links_5_hero_section_link_title',''),(15882,941,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(15883,941,'hero_section_links','6'),(15884,941,'_hero_section_links','field_5d5711cf21851'),(15885,941,'featured_faq_title','Solving the digital future of cruising.'),(15886,941,'_featured_faq_title','field_5d57145bc652e'),(15887,941,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(15888,941,'_featured_faq_description','field_5d57146bc652f'),(15889,941,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(15890,941,'_featured_faq_link','field_5d57147ec6530'),(15891,941,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/edge/'),(15892,941,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(15893,941,'popular_features_links_0_popular_features_link_title','Ships'),(15894,941,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(15895,941,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15896,941,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(15897,941,'popular_features_links_1_popular_features_link_title','Check-in'),(15898,941,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(15899,941,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15900,941,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(15901,941,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(15902,941,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(15903,941,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15904,941,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(15905,941,'popular_features_links_3_popular_features_link_title','Guest Account'),(15906,941,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(15907,941,'popular_features_links','4'),(15908,941,'_popular_features_links','field_5d5714d1c6531'),(15909,941,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(15910,941,'_link_explore_our_fleet','field_5d77a90f09145'),(15911,941,'image_explore_our_fleet','908'),(15912,941,'_image_explore_our_fleet','field_5d77a96009146'),(15913,941,'title_explore_our_fleet','Need to find your ship?'),(15914,941,'_title_explore_our_fleet','field_5d77a97809147'),(15915,941,'subtitle_explore_our_fleet','Explore our fleet'),(15916,941,'_subtitle_explore_our_fleet','field_5d77a98709148'),(15921,795,'media_assets',''),(15922,795,'_media_assets','field_5d72c2c090478'),(15923,795,'media_assets_archive_zip',''),(15924,795,'_media_assets_archive_zip','field_5d768ad62c946'),(15925,942,'author_news','2'),(15926,942,'_author_news','field_5d3083fbbea51'),(15927,942,'select_brand','144'),(15928,942,'_select_brand','field_5d3084d736561'),(15929,942,'featured_post','0'),(15930,942,'_featured_post','field_5d30852c7c4e7'),(15931,942,'legend_featured_image',''),(15932,942,'_legend_featured_image','field_5d39e9d4ef8f8'),(15933,942,'select_posts_related',''),(15934,942,'_select_posts_related','field_5d3afdcff5db7'),(15935,942,'media_assets',''),(15936,942,'_media_assets','field_5d72c2c090478'),(15937,942,'media_assets_archive_zip',''),(15938,942,'_media_assets_archive_zip','field_5d768ad62c946'),(15939,943,'hero_section_title','Frequently asked questions'),(15940,943,'_hero_section_title','field_5d55a345f8cdb'),(15941,943,'hero_section_image','600'),(15942,943,'_hero_section_image','field_5d55a424f8cdc'),(15943,943,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(15944,943,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(15945,943,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(15946,943,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(15947,943,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(15948,943,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(15949,943,'hero_section_links_1_hero_section_link_title','What should I expect when I arrive?'),(15950,943,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(15951,943,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(15952,943,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(15953,943,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(15954,943,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(15955,943,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15956,943,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(15957,943,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(15958,943,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(15959,943,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15960,943,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(15961,943,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(15962,943,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(15963,943,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(15964,943,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(15965,943,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(15966,943,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(15967,943,'hero_section_links','6'),(15968,943,'_hero_section_links','field_5d55a451f8cdd'),(15969,943,'popular_features_title','Popular Features'),(15970,943,'_popular_features_title','field_5d55abb7ffa2d'),(15971,943,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(15972,943,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(15973,943,'popular_features_links_0_popular_features_link_title','Ships'),(15974,943,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(15975,943,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(15976,943,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(15977,943,'popular_features_links_1_popular_features_link_title','Guest Account'),(15978,943,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(15979,943,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(15980,943,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(15981,943,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(15982,943,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(15983,943,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(15984,943,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(15985,943,'popular_features_links_3_popular_features_link_title','Check-in'),(15986,943,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(15987,943,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(15988,943,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(15989,943,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(15990,943,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(15991,943,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(15992,943,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(15993,943,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(15994,943,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(15995,943,'popular_features_links','6'),(15996,943,'_popular_features_links','field_5d55ac6b2b75e'),(15997,943,'helpful_articles_title','Helpful articles and how-to\'s'),(15998,943,'_helpful_articles_title','field_5d55b136c34eb'),(15999,943,'post_image_right_title','Solving for the future of cruising.'),(16000,943,'_post_image_right_title','field_5d55b49247b3a'),(16001,943,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16002,943,'_post_image_right_description','field_5d55b49b47b3b'),(16003,943,'post_image_right_title_link','Learn more'),(16004,943,'_post_image_right_title_link','field_5d55b4a747b3c'),(16005,943,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16006,943,'_post_image_right_link','field_5d55b4b247b3d'),(16007,943,'post_image_right_image','527'),(16008,943,'_post_image_right_image','field_5d55b4be47b3e'),(16009,943,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16010,943,'_post_image_left_title','field_5d55b69a7e8a7'),(16011,943,'post_image_left_link','https://vimeo.com/'),(16012,943,'_post_image_left_link','field_5d55b6a47e8a8'),(16013,943,'post_image_left_image','536'),(16014,943,'_post_image_left_image','field_5d55b6b47e8a9'),(16015,943,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16016,943,'_select_posts','field_5d55ba1e32eec'),(16017,943,'seletc_type_link','Vídeo'),(16018,943,'_seletc_type_link','field_5d57093fdc431'),(16019,943,'post_image_left_id_video','344894438'),(16020,943,'_post_image_left_id_video','field_5d570987dc432'),(16021,944,'_wp_attached_file','2019/09/Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606.png'),(16022,944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1965;s:6:\"height\";i:1097;s:4:\"file\";s:63:\"2019/09/Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-768x429.png\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1024x572.png\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:64:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:63:\"Screen-Shot-2019-09-11-at-2.33.55-PM-e1568226997606-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(16023,944,'_wp_attachment_backup_sizes','a:16:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2042;s:6:\"height\";i:1152;s:4:\"file\";s:40:\"Screen-Shot-2019-09-11-at-2.33.55-PM.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-768x433.png\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1024x578.png\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"featured-index-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"related-index-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"featured-archive-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"related-archive-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"list-archive-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"featured-single-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"featured-faq-small-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"featured-faq-learn-orig\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-11-at-2.33.55-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"featured-faq-list-orig\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-11-at-2.33.55-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}'),(16028,804,'media_assets',''),(16029,804,'_media_assets','field_5d72c2c090478'),(16030,804,'media_assets_archive_zip',''),(16031,804,'_media_assets_archive_zip','field_5d768ad62c946'),(16032,945,'author_news','2'),(16033,945,'_author_news','field_5d3083fbbea51'),(16034,945,'select_brand','144'),(16035,945,'_select_brand','field_5d3084d736561'),(16036,945,'featured_post','0'),(16037,945,'_featured_post','field_5d30852c7c4e7'),(16038,945,'legend_featured_image',''),(16039,945,'_legend_featured_image','field_5d39e9d4ef8f8'),(16040,945,'select_posts_related',''),(16041,945,'_select_posts_related','field_5d3afdcff5db7'),(16042,945,'media_assets',''),(16043,945,'_media_assets','field_5d72c2c090478'),(16044,945,'media_assets_archive_zip',''),(16045,945,'_media_assets_archive_zip','field_5d768ad62c946'),(16050,946,'author_news','2'),(16051,946,'_author_news','field_5d3083fbbea51'),(16052,946,'select_brand','144'),(16053,946,'_select_brand','field_5d3084d736561'),(16054,946,'featured_post','0'),(16055,946,'_featured_post','field_5d30852c7c4e7'),(16056,946,'legend_featured_image',''),(16057,946,'_legend_featured_image','field_5d39e9d4ef8f8'),(16058,946,'select_posts_related',''),(16059,946,'_select_posts_related','field_5d3afdcff5db7'),(16060,946,'media_assets',''),(16061,946,'_media_assets','field_5d72c2c090478'),(16062,946,'media_assets_archive_zip',''),(16063,946,'_media_assets_archive_zip','field_5d768ad62c946'),(16068,948,'author_news','2'),(16069,948,'_author_news','field_5d3083fbbea51'),(16070,948,'select_brand','88'),(16071,948,'_select_brand','field_5d3084d736561'),(16072,948,'featured_post','1'),(16073,948,'_featured_post','field_5d30852c7c4e7'),(16074,948,'legend_featured_image','Neque porro quisquam est'),(16075,948,'_legend_featured_image','field_5d39e9d4ef8f8'),(16076,948,'select_posts_related',''),(16077,948,'_select_posts_related','field_5d3afdcff5db7'),(16078,948,'archive_audio_mp3',''),(16079,948,'_archive_audio_mp3','field_5d4989a80007c'),(16080,948,'url_video',''),(16081,948,'_url_video','field_5d49897521f43'),(16082,948,'media_assets',''),(16083,948,'_media_assets','field_5d72c2c090478'),(16084,948,'media_assets_archive_zip',''),(16085,948,'_media_assets_archive_zip','field_5d768ad62c946'),(16098,950,'author_news','2'),(16099,950,'_author_news','field_5d3083fbbea51'),(16100,950,'select_brand','88'),(16101,950,'_select_brand','field_5d3084d736561'),(16102,950,'featured_post','1'),(16103,950,'_featured_post','field_5d30852c7c4e7'),(16104,950,'legend_featured_image','Neque porro quisquam est'),(16105,950,'_legend_featured_image','field_5d39e9d4ef8f8'),(16106,950,'select_posts_related',''),(16107,950,'_select_posts_related','field_5d3afdcff5db7'),(16108,950,'archive_audio_mp3',''),(16109,950,'_archive_audio_mp3','field_5d4989a80007c'),(16110,950,'url_video',''),(16111,950,'_url_video','field_5d49897521f43'),(16112,950,'media_assets',''),(16113,950,'_media_assets','field_5d72c2c090478'),(16114,950,'media_assets_archive_zip',''),(16115,950,'_media_assets_archive_zip','field_5d768ad62c946'),(16116,951,'hero_section_title','Frequently asked questions'),(16117,951,'_hero_section_title','field_5d55a345f8cdb'),(16118,951,'hero_section_image','600'),(16119,951,'_hero_section_image','field_5d55a424f8cdc'),(16120,951,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(16121,951,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16122,951,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16123,951,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16124,951,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16125,951,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16126,951,'hero_section_links_1_hero_section_link_title','What should I expect at the terminal?'),(16127,951,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16128,951,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16129,951,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16130,951,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16131,951,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16132,951,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16133,951,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16134,951,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16135,951,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16136,951,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16137,951,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16138,951,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16139,951,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16140,951,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16141,951,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16142,951,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16143,951,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16144,951,'hero_section_links','6'),(16145,951,'_hero_section_links','field_5d55a451f8cdd'),(16146,951,'popular_features_title','Popular Features'),(16147,951,'_popular_features_title','field_5d55abb7ffa2d'),(16148,951,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(16149,951,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16150,951,'popular_features_links_0_popular_features_link_title','Ships'),(16151,951,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16152,951,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16153,951,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16154,951,'popular_features_links_1_popular_features_link_title','Guest Account'),(16155,951,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16156,951,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16157,951,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16158,951,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16159,951,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16160,951,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16161,951,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16162,951,'popular_features_links_3_popular_features_link_title','Check-in'),(16163,951,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16164,951,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(16165,951,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16166,951,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16167,951,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16168,951,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16169,951,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16170,951,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16171,951,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16172,951,'popular_features_links','6'),(16173,951,'_popular_features_links','field_5d55ac6b2b75e'),(16174,951,'helpful_articles_title','Helpful articles and how-to\'s'),(16175,951,'_helpful_articles_title','field_5d55b136c34eb'),(16176,951,'post_image_right_title','Solving for the future of cruising.'),(16177,951,'_post_image_right_title','field_5d55b49247b3a'),(16178,951,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16179,951,'_post_image_right_description','field_5d55b49b47b3b'),(16180,951,'post_image_right_title_link','Learn more'),(16181,951,'_post_image_right_title_link','field_5d55b4a747b3c'),(16182,951,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16183,951,'_post_image_right_link','field_5d55b4b247b3d'),(16184,951,'post_image_right_image','527'),(16185,951,'_post_image_right_image','field_5d55b4be47b3e'),(16186,951,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16187,951,'_post_image_left_title','field_5d55b69a7e8a7'),(16188,951,'post_image_left_link','https://vimeo.com/'),(16189,951,'_post_image_left_link','field_5d55b6a47e8a8'),(16190,951,'post_image_left_image','536'),(16191,951,'_post_image_left_image','field_5d55b6b47e8a9'),(16192,951,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16193,951,'_select_posts','field_5d55ba1e32eec'),(16194,951,'seletc_type_link','Vídeo'),(16195,951,'_seletc_type_link','field_5d57093fdc431'),(16196,951,'post_image_left_id_video','344894438'),(16197,951,'_post_image_left_id_video','field_5d570987dc432'),(16198,952,'_edit_lock','1594137578:9'),(16199,952,'_edit_last','2'),(16200,952,'_thumbnail_id','994'),(16201,952,'url_video_featured',''),(16202,952,'_url_video_featured','field_5d4b2b239e718'),(16203,952,'content_faq_0_image_featured_row',''),(16204,952,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(16205,952,'content_faq_0_text_row_content','Our app availability and features vary across different ships within the Royal Caribbean International, Celebrity Cruises and Azamara brands. We continue to expand our app availability, so see our list of ships where the app currently serves, sorted by brand below.<span class=\"Apple-converted-space\"> C</span>heck back often for updates!'),(16206,952,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(16207,952,'content_faq','5'),(16208,952,'_content_faq','field_5d4c26b63bd77'),(16209,952,'select_posts_related','a:3:{i:0;s:3:\"398\";i:1;s:3:\"334\";i:2;s:3:\"381\";}'),(16210,952,'_select_posts_related','field_5d4b2b239e75e'),(16211,952,'download_app_caribbean_digital','1'),(16212,952,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(16213,952,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(16214,952,'_need_more_help','field_5d4c2771f5de3'),(16215,952,'author_news','2'),(16216,952,'_author_news','field_5d4b2aa11701b'),(16217,952,'description_post','Which ships on Royal Caribbean, Celebrity Cruises and Azamara have the app?'),(16218,952,'_description_post','field_5d55bc8c63af0'),(16219,953,'title_hero','Solving for the<br> digital future of<br> cruising'),(16220,953,'_title_hero','field_5d2cbfcfc7b2b'),(16221,953,'title_quote','Tech that'),(16222,953,'_title_quote','field_5d2cc09b51dfa'),(16223,953,'title_strong_quote','ships'),(16224,953,'_title_strong_quote','field_5d2cc0db51dfc'),(16225,953,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(16226,953,'_description_quote','field_5d2cc0a851dfb'),(16227,953,'imagem_quote','45'),(16228,953,'_imagem_quote','field_5d2cc0ed51dfd'),(16229,953,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(16230,953,'_description_blockquote','field_5d2cc22c9da9a'),(16231,953,'author_blockquote','Richard Fain, in an interview with'),(16232,953,'_author_blockquote','field_5d2cc25a9da9b'),(16233,953,'company','TechRepublic'),(16234,953,'_company','field_5d2cc2769da9c'),(16235,953,'company_blockquote','TechRepublic'),(16236,953,'_company_blockquote','field_5d2cc2769da9c'),(16237,953,'title_featured_i','Self serving'),(16238,953,'_title_featured_i','field_5d2cc41890f84'),(16239,953,'description_featured_i','All you need to begin the check-in process is a smile.'),(16240,953,'_description_featured_i','field_5d2cc42890f85'),(16241,953,'seletc_type_link_featured_i','Link'),(16242,953,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(16243,953,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(16244,953,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(16245,953,'imagem_featured_i','361'),(16246,953,'_imagem_featured_i','field_5d2cc71559443'),(16247,953,'title_info_numbers','Digital by<br> the numbers'),(16248,953,'_title_info_numbers','field_5d2cc7e517635'),(16249,953,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(16250,953,'_description_info_number','field_5d2cc7f817636'),(16251,953,'app_downloads','3M'),(16252,953,'_app_downloads','field_5d2cc83e17637'),(16253,953,'active_users','1M'),(16254,953,'_active_users','field_5d2cc84617638'),(16255,953,'average_ios_rating','4.6'),(16256,953,'_average_ios_rating','field_5d2cc85217639'),(16257,953,'crew_checkins','14k'),(16258,953,'_crew_checkins','field_5d2cc8631763a'),(16259,953,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(16260,953,'_title_featured_ii','field_5d2cc9741153c'),(16261,953,'description_featured_ii',''),(16262,953,'_description_featured_ii','field_5d2cc97e1153d'),(16263,953,'imagem_featured_ii','45'),(16264,953,'_imagem_featured_ii','field_5d2cc98c1153e'),(16265,953,'seletc_type_link_featured_ii','Link'),(16266,953,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(16267,953,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(16268,953,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(16269,953,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(16270,953,'_title_featured_iii','field_5d2ccafff022a'),(16271,953,'description_featured_iii',''),(16272,953,'_description_featured_iii','field_5d2ccb0cf022b'),(16273,953,'imagem_featured_iii','862'),(16274,953,'_imagem_featured_iii','field_5d2ccb21f022c'),(16275,953,'seletc_type_link_featured_iii','Vídeo'),(16276,953,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(16277,953,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(16278,953,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(16279,953,'subtitle_hero','Our guests often ask…'),(16280,953,'_subtitle_hero','field_5d5711764ff01'),(16281,953,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16282,953,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(16283,953,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(16284,953,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(16285,953,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(16286,953,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(16287,953,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(16288,953,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(16289,953,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(16290,953,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(16291,953,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(16292,953,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(16293,953,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16294,953,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(16295,953,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(16296,953,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(16297,953,'hero_section_links_4_hero_section_link',''),(16298,953,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(16299,953,'hero_section_links_4_hero_section_link_title',''),(16300,953,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(16301,953,'hero_section_links_5_hero_section_link',''),(16302,953,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(16303,953,'hero_section_links_5_hero_section_link_title',''),(16304,953,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(16305,953,'hero_section_links','6'),(16306,953,'_hero_section_links','field_5d5711cf21851'),(16307,953,'featured_faq_title','Solving the digital future of cruising.'),(16308,953,'_featured_faq_title','field_5d57145bc652e'),(16309,953,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16310,953,'_featured_faq_description','field_5d57146bc652f'),(16311,953,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(16312,953,'_featured_faq_link','field_5d57147ec6530'),(16313,953,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/ships/edge/'),(16314,953,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(16315,953,'popular_features_links_0_popular_features_link_title','Ships'),(16316,953,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(16317,953,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16318,953,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(16319,953,'popular_features_links_1_popular_features_link_title','Check-in'),(16320,953,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(16321,953,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16322,953,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(16323,953,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(16324,953,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(16325,953,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16326,953,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(16327,953,'popular_features_links_3_popular_features_link_title','Guest Account'),(16328,953,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(16329,953,'popular_features_links','4'),(16330,953,'_popular_features_links','field_5d5714d1c6531'),(16331,953,'link_explore_our_fleet','http://royaldigital.labcp.co/post-test-title/'),(16332,953,'_link_explore_our_fleet','field_5d77a90f09145'),(16333,953,'image_explore_our_fleet','908'),(16334,953,'_image_explore_our_fleet','field_5d77a96009146'),(16335,953,'title_explore_our_fleet','Need to find your ship?'),(16336,953,'_title_explore_our_fleet','field_5d77a97809147'),(16337,953,'subtitle_explore_our_fleet','Explore our fleet'),(16338,953,'_subtitle_explore_our_fleet','field_5d77a98709148'),(16339,954,'title_hero','Solving for the<br> digital future of<br> cruising'),(16340,954,'_title_hero','field_5d2cbfcfc7b2b'),(16341,954,'title_quote','Tech that'),(16342,954,'_title_quote','field_5d2cc09b51dfa'),(16343,954,'title_strong_quote','ships'),(16344,954,'_title_strong_quote','field_5d2cc0db51dfc'),(16345,954,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(16346,954,'_description_quote','field_5d2cc0a851dfb'),(16347,954,'imagem_quote','45'),(16348,954,'_imagem_quote','field_5d2cc0ed51dfd'),(16349,954,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(16350,954,'_description_blockquote','field_5d2cc22c9da9a'),(16351,954,'author_blockquote','Richard Fain, in an interview with'),(16352,954,'_author_blockquote','field_5d2cc25a9da9b'),(16353,954,'company','TechRepublic'),(16354,954,'_company','field_5d2cc2769da9c'),(16355,954,'company_blockquote','TechRepublic'),(16356,954,'_company_blockquote','field_5d2cc2769da9c'),(16357,954,'title_featured_i','Self serving'),(16358,954,'_title_featured_i','field_5d2cc41890f84'),(16359,954,'description_featured_i','All you need to begin the check-in process is a smile.'),(16360,954,'_description_featured_i','field_5d2cc42890f85'),(16361,954,'seletc_type_link_featured_i','Link'),(16362,954,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(16363,954,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(16364,954,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(16365,954,'imagem_featured_i','361'),(16366,954,'_imagem_featured_i','field_5d2cc71559443'),(16367,954,'title_info_numbers','Digital by<br> the numbers'),(16368,954,'_title_info_numbers','field_5d2cc7e517635'),(16369,954,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(16370,954,'_description_info_number','field_5d2cc7f817636'),(16371,954,'app_downloads','3M'),(16372,954,'_app_downloads','field_5d2cc83e17637'),(16373,954,'active_users','1M'),(16374,954,'_active_users','field_5d2cc84617638'),(16375,954,'average_ios_rating','4.6'),(16376,954,'_average_ios_rating','field_5d2cc85217639'),(16377,954,'crew_checkins','14k'),(16378,954,'_crew_checkins','field_5d2cc8631763a'),(16379,954,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(16380,954,'_title_featured_ii','field_5d2cc9741153c'),(16381,954,'description_featured_ii',''),(16382,954,'_description_featured_ii','field_5d2cc97e1153d'),(16383,954,'imagem_featured_ii','45'),(16384,954,'_imagem_featured_ii','field_5d2cc98c1153e'),(16385,954,'seletc_type_link_featured_ii','Link'),(16386,954,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(16387,954,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(16388,954,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(16389,954,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(16390,954,'_title_featured_iii','field_5d2ccafff022a'),(16391,954,'description_featured_iii',''),(16392,954,'_description_featured_iii','field_5d2ccb0cf022b'),(16393,954,'imagem_featured_iii','862'),(16394,954,'_imagem_featured_iii','field_5d2ccb21f022c'),(16395,954,'seletc_type_link_featured_iii','Vídeo'),(16396,954,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(16397,954,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(16398,954,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(16399,954,'subtitle_hero','Our guests often ask…'),(16400,954,'_subtitle_hero','field_5d5711764ff01'),(16401,954,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16402,954,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(16403,954,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(16404,954,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(16405,954,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(16406,954,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(16407,954,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(16408,954,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(16409,954,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(16410,954,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(16411,954,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(16412,954,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(16413,954,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16414,954,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(16415,954,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(16416,954,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(16417,954,'hero_section_links_4_hero_section_link',''),(16418,954,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(16419,954,'hero_section_links_4_hero_section_link_title',''),(16420,954,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(16421,954,'hero_section_links_5_hero_section_link',''),(16422,954,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(16423,954,'hero_section_links_5_hero_section_link_title',''),(16424,954,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(16425,954,'hero_section_links','6'),(16426,954,'_hero_section_links','field_5d5711cf21851'),(16427,954,'featured_faq_title','Solving the digital future of cruising.'),(16428,954,'_featured_faq_title','field_5d57145bc652e'),(16429,954,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16430,954,'_featured_faq_description','field_5d57146bc652f'),(16431,954,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(16432,954,'_featured_faq_link','field_5d57147ec6530'),(16433,954,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(16434,954,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(16435,954,'popular_features_links_0_popular_features_link_title','Our App'),(16436,954,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(16437,954,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16438,954,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(16439,954,'popular_features_links_1_popular_features_link_title','Check-in'),(16440,954,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(16441,954,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16442,954,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(16443,954,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(16444,954,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(16445,954,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16446,954,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(16447,954,'popular_features_links_3_popular_features_link_title','Guest Account'),(16448,954,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(16449,954,'popular_features_links','4'),(16450,954,'_popular_features_links','field_5d5714d1c6531'),(16451,954,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16452,954,'_link_explore_our_fleet','field_5d77a90f09145'),(16453,954,'image_explore_our_fleet','908'),(16454,954,'_image_explore_our_fleet','field_5d77a96009146'),(16455,954,'title_explore_our_fleet','Need to find your ship?'),(16456,954,'_title_explore_our_fleet','field_5d77a97809147'),(16457,954,'subtitle_explore_our_fleet','Explore our fleet'),(16458,954,'_subtitle_explore_our_fleet','field_5d77a98709148'),(16463,955,'author_news','2'),(16464,955,'_author_news','field_5d3083fbbea51'),(16465,955,'select_brand','88'),(16466,955,'_select_brand','field_5d3084d736561'),(16467,955,'featured_post','1'),(16468,955,'_featured_post','field_5d30852c7c4e7'),(16469,955,'legend_featured_image','Neque porro quisquam est'),(16470,955,'_legend_featured_image','field_5d39e9d4ef8f8'),(16471,955,'select_posts_related',''),(16472,955,'_select_posts_related','field_5d3afdcff5db7'),(16473,955,'archive_audio_mp3',''),(16474,955,'_archive_audio_mp3','field_5d4989a80007c'),(16475,955,'url_video',''),(16476,955,'_url_video','field_5d49897521f43'),(16477,955,'media_assets',''),(16478,955,'_media_assets','field_5d72c2c090478'),(16479,955,'media_assets_archive_zip',''),(16480,955,'_media_assets_archive_zip','field_5d768ad62c946'),(16481,956,'hero_section_title','Frequently asked questions'),(16482,956,'_hero_section_title','field_5d55a345f8cdb'),(16483,956,'hero_section_image','600'),(16484,956,'_hero_section_image','field_5d55a424f8cdc'),(16485,956,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(16486,956,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16487,956,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16488,956,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16489,956,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16490,956,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16491,956,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16492,956,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16493,956,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16494,956,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16495,956,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16496,956,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16497,956,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16498,956,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16499,956,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16500,956,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16501,956,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16502,956,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16503,956,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16504,956,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16505,956,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16506,956,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16507,956,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16508,956,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16509,956,'hero_section_links','6'),(16510,956,'_hero_section_links','field_5d55a451f8cdd'),(16511,956,'popular_features_title','Popular Features'),(16512,956,'_popular_features_title','field_5d55abb7ffa2d'),(16513,956,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(16514,956,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16515,956,'popular_features_links_0_popular_features_link_title','Ships'),(16516,956,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16517,956,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16518,956,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16519,956,'popular_features_links_1_popular_features_link_title','Guest Account'),(16520,956,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16521,956,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16522,956,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16523,956,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16524,956,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16525,956,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16526,956,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16527,956,'popular_features_links_3_popular_features_link_title','Check-in'),(16528,956,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16529,956,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(16530,956,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16531,956,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16532,956,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16533,956,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16534,956,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16535,956,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16536,956,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16537,956,'popular_features_links','6'),(16538,956,'_popular_features_links','field_5d55ac6b2b75e'),(16539,956,'helpful_articles_title','Helpful articles and how-to\'s'),(16540,956,'_helpful_articles_title','field_5d55b136c34eb'),(16541,956,'post_image_right_title','Solving for the future of cruising.'),(16542,956,'_post_image_right_title','field_5d55b49247b3a'),(16543,956,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16544,956,'_post_image_right_description','field_5d55b49b47b3b'),(16545,956,'post_image_right_title_link','Learn more'),(16546,956,'_post_image_right_title_link','field_5d55b4a747b3c'),(16547,956,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16548,956,'_post_image_right_link','field_5d55b4b247b3d'),(16549,956,'post_image_right_image','527'),(16550,956,'_post_image_right_image','field_5d55b4be47b3e'),(16551,956,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16552,956,'_post_image_left_title','field_5d55b69a7e8a7'),(16553,956,'post_image_left_link','https://vimeo.com/'),(16554,956,'_post_image_left_link','field_5d55b6a47e8a8'),(16555,956,'post_image_left_image','536'),(16556,956,'_post_image_left_image','field_5d55b6b47e8a9'),(16557,956,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16558,956,'_select_posts','field_5d55ba1e32eec'),(16559,956,'seletc_type_link','Vídeo'),(16560,956,'_seletc_type_link','field_5d57093fdc431'),(16561,956,'post_image_left_id_video','344894438'),(16562,956,'_post_image_left_id_video','field_5d570987dc432'),(16563,957,'hero_section_title','Frequently asked questions'),(16564,957,'_hero_section_title','field_5d55a345f8cdb'),(16565,957,'hero_section_image','600'),(16566,957,'_hero_section_image','field_5d55a424f8cdc'),(16567,957,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16568,957,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16569,957,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16570,957,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16571,957,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16572,957,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16573,957,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16574,957,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16575,957,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16576,957,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16577,957,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16578,957,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16579,957,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16580,957,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16581,957,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16582,957,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16583,957,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16584,957,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16585,957,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16586,957,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16587,957,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16588,957,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16589,957,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16590,957,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16591,957,'hero_section_links','6'),(16592,957,'_hero_section_links','field_5d55a451f8cdd'),(16593,957,'popular_features_title','Popular Features'),(16594,957,'_popular_features_title','field_5d55abb7ffa2d'),(16595,957,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(16596,957,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16597,957,'popular_features_links_0_popular_features_link_title','Ships'),(16598,957,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16599,957,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16600,957,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16601,957,'popular_features_links_1_popular_features_link_title','Guest Account'),(16602,957,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16603,957,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16604,957,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16605,957,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16606,957,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16607,957,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16608,957,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16609,957,'popular_features_links_3_popular_features_link_title','Check-in'),(16610,957,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16611,957,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(16612,957,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16613,957,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16614,957,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16615,957,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16616,957,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16617,957,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16618,957,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16619,957,'popular_features_links','6'),(16620,957,'_popular_features_links','field_5d55ac6b2b75e'),(16621,957,'helpful_articles_title','Helpful articles and how-to\'s'),(16622,957,'_helpful_articles_title','field_5d55b136c34eb'),(16623,957,'post_image_right_title','Solving for the future of cruising.'),(16624,957,'_post_image_right_title','field_5d55b49247b3a'),(16625,957,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16626,957,'_post_image_right_description','field_5d55b49b47b3b'),(16627,957,'post_image_right_title_link','Learn more'),(16628,957,'_post_image_right_title_link','field_5d55b4a747b3c'),(16629,957,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16630,957,'_post_image_right_link','field_5d55b4b247b3d'),(16631,957,'post_image_right_image','527'),(16632,957,'_post_image_right_image','field_5d55b4be47b3e'),(16633,957,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16634,957,'_post_image_left_title','field_5d55b69a7e8a7'),(16635,957,'post_image_left_link','https://vimeo.com/'),(16636,957,'_post_image_left_link','field_5d55b6a47e8a8'),(16637,957,'post_image_left_image','536'),(16638,957,'_post_image_left_image','field_5d55b6b47e8a9'),(16639,957,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16640,957,'_select_posts','field_5d55ba1e32eec'),(16641,957,'seletc_type_link','Vídeo'),(16642,957,'_seletc_type_link','field_5d57093fdc431'),(16643,957,'post_image_left_id_video','344894438'),(16644,957,'_post_image_left_id_video','field_5d570987dc432'),(16645,958,'hero_section_title','Frequently asked questions'),(16646,958,'_hero_section_title','field_5d55a345f8cdb'),(16647,958,'hero_section_image','600'),(16648,958,'_hero_section_image','field_5d55a424f8cdc'),(16649,958,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16650,958,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16651,958,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16652,958,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16653,958,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16654,958,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16655,958,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16656,958,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16657,958,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16658,958,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16659,958,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16660,958,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16661,958,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16662,958,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16663,958,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16664,958,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16665,958,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16666,958,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16667,958,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16668,958,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16669,958,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16670,958,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16671,958,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16672,958,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16673,958,'hero_section_links','6'),(16674,958,'_hero_section_links','field_5d55a451f8cdd'),(16675,958,'popular_features_title','Popular Features'),(16676,958,'_popular_features_title','field_5d55abb7ffa2d'),(16677,958,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16678,958,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16679,958,'popular_features_links_0_popular_features_link_title','Ships'),(16680,958,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16681,958,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16682,958,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16683,958,'popular_features_links_1_popular_features_link_title','Guest Account'),(16684,958,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16685,958,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16686,958,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16687,958,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16688,958,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16689,958,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16690,958,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16691,958,'popular_features_links_3_popular_features_link_title','Check-in'),(16692,958,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16693,958,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/track-expenses-in-real-time-with-onboard-account/'),(16694,958,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16695,958,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16696,958,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16697,958,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16698,958,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16699,958,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16700,958,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16701,958,'popular_features_links','6'),(16702,958,'_popular_features_links','field_5d55ac6b2b75e'),(16703,958,'helpful_articles_title','Helpful articles and how-to\'s'),(16704,958,'_helpful_articles_title','field_5d55b136c34eb'),(16705,958,'post_image_right_title','Solving for the future of cruising.'),(16706,958,'_post_image_right_title','field_5d55b49247b3a'),(16707,958,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16708,958,'_post_image_right_description','field_5d55b49b47b3b'),(16709,958,'post_image_right_title_link','Learn more'),(16710,958,'_post_image_right_title_link','field_5d55b4a747b3c'),(16711,958,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16712,958,'_post_image_right_link','field_5d55b4b247b3d'),(16713,958,'post_image_right_image','527'),(16714,958,'_post_image_right_image','field_5d55b4be47b3e'),(16715,958,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16716,958,'_post_image_left_title','field_5d55b69a7e8a7'),(16717,958,'post_image_left_link','https://vimeo.com/'),(16718,958,'_post_image_left_link','field_5d55b6a47e8a8'),(16719,958,'post_image_left_image','536'),(16720,958,'_post_image_left_image','field_5d55b6b47e8a9'),(16721,958,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16722,958,'_select_posts','field_5d55ba1e32eec'),(16723,958,'seletc_type_link','Vídeo'),(16724,958,'_seletc_type_link','field_5d57093fdc431'),(16725,958,'post_image_left_id_video','344894438'),(16726,958,'_post_image_left_id_video','field_5d570987dc432'),(16727,959,'hero_section_title','Frequently asked questions'),(16728,959,'_hero_section_title','field_5d55a345f8cdb'),(16729,959,'hero_section_image','600'),(16730,959,'_hero_section_image','field_5d55a424f8cdc'),(16731,959,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16732,959,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16733,959,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16734,959,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16735,959,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16736,959,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16737,959,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16738,959,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16739,959,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16740,959,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16741,959,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16742,959,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16743,959,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16744,959,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16745,959,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16746,959,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16747,959,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16748,959,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16749,959,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16750,959,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16751,959,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16752,959,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16753,959,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16754,959,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16755,959,'hero_section_links','6'),(16756,959,'_hero_section_links','field_5d55a451f8cdd'),(16757,959,'popular_features_title','Popular Features'),(16758,959,'_popular_features_title','field_5d55abb7ffa2d'),(16759,959,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16760,959,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16761,959,'popular_features_links_0_popular_features_link_title','Ships'),(16762,959,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16763,959,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16764,959,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16765,959,'popular_features_links_1_popular_features_link_title','Guest Account'),(16766,959,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16767,959,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16768,959,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16769,959,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16770,959,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16771,959,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16772,959,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16773,959,'popular_features_links_3_popular_features_link_title','Check-in'),(16774,959,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16775,959,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16776,959,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16777,959,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16778,959,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16779,959,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16780,959,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16781,959,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16782,959,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16783,959,'popular_features_links','6'),(16784,959,'_popular_features_links','field_5d55ac6b2b75e'),(16785,959,'helpful_articles_title','Helpful articles and how-to\'s'),(16786,959,'_helpful_articles_title','field_5d55b136c34eb'),(16787,959,'post_image_right_title','Solving for the future of cruising.'),(16788,959,'_post_image_right_title','field_5d55b49247b3a'),(16789,959,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16790,959,'_post_image_right_description','field_5d55b49b47b3b'),(16791,959,'post_image_right_title_link','Learn more'),(16792,959,'_post_image_right_title_link','field_5d55b4a747b3c'),(16793,959,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16794,959,'_post_image_right_link','field_5d55b4b247b3d'),(16795,959,'post_image_right_image','527'),(16796,959,'_post_image_right_image','field_5d55b4be47b3e'),(16797,959,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16798,959,'_post_image_left_title','field_5d55b69a7e8a7'),(16799,959,'post_image_left_link','https://vimeo.com/'),(16800,959,'_post_image_left_link','field_5d55b6a47e8a8'),(16801,959,'post_image_left_image','536'),(16802,959,'_post_image_left_image','field_5d55b6b47e8a9'),(16803,959,'select_posts','a:3:{i:0;s:3:\"381\";i:1;s:3:\"380\";i:2;s:3:\"367\";}'),(16804,959,'_select_posts','field_5d55ba1e32eec'),(16805,959,'seletc_type_link','Vídeo'),(16806,959,'_seletc_type_link','field_5d57093fdc431'),(16807,959,'post_image_left_id_video','344894438'),(16808,959,'_post_image_left_id_video','field_5d570987dc432'),(16809,962,'hero_section_title','Frequently asked questions'),(16810,962,'_hero_section_title','field_5d55a345f8cdb'),(16811,962,'hero_section_image','600'),(16812,962,'_hero_section_image','field_5d55a424f8cdc'),(16813,962,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16814,962,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16815,962,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16816,962,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16817,962,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16818,962,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16819,962,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16820,962,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16821,962,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16822,962,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16823,962,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16824,962,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16825,962,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16826,962,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16827,962,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16828,962,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16829,962,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16830,962,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16831,962,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16832,962,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16833,962,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16834,962,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16835,962,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16836,962,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16837,962,'hero_section_links','6'),(16838,962,'_hero_section_links','field_5d55a451f8cdd'),(16839,962,'popular_features_title','Popular Features'),(16840,962,'_popular_features_title','field_5d55abb7ffa2d'),(16841,962,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16842,962,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16843,962,'popular_features_links_0_popular_features_link_title','Ships'),(16844,962,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16845,962,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16846,962,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16847,962,'popular_features_links_1_popular_features_link_title','Guest Account'),(16848,962,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16849,962,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16850,962,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16851,962,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16852,962,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16853,962,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16854,962,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16855,962,'popular_features_links_3_popular_features_link_title','Check-in'),(16856,962,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(16857,962,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16858,962,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(16859,962,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(16860,962,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(16861,962,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16862,962,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(16863,962,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(16864,962,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(16865,962,'popular_features_links','6'),(16866,962,'_popular_features_links','field_5d55ac6b2b75e'),(16867,962,'helpful_articles_title','Helpful articles and how-to\'s'),(16868,962,'_helpful_articles_title','field_5d55b136c34eb'),(16869,962,'post_image_right_title','Solving for the future of cruising.'),(16870,962,'_post_image_right_title','field_5d55b49247b3a'),(16871,962,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(16872,962,'_post_image_right_description','field_5d55b49b47b3b'),(16873,962,'post_image_right_title_link','Learn more'),(16874,962,'_post_image_right_title_link','field_5d55b4a747b3c'),(16875,962,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16876,962,'_post_image_right_link','field_5d55b4b247b3d'),(16877,962,'post_image_right_image','527'),(16878,962,'_post_image_right_image','field_5d55b4be47b3e'),(16879,962,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(16880,962,'_post_image_left_title','field_5d55b69a7e8a7'),(16881,962,'post_image_left_link','https://vimeo.com/'),(16882,962,'_post_image_left_link','field_5d55b6a47e8a8'),(16883,962,'post_image_left_image','536'),(16884,962,'_post_image_left_image','field_5d55b6b47e8a9'),(16885,962,'select_posts','a:2:{i:0;s:3:\"381\";i:1;s:3:\"380\";}'),(16886,962,'_select_posts','field_5d55ba1e32eec'),(16887,962,'seletc_type_link','Vídeo'),(16888,962,'_seletc_type_link','field_5d57093fdc431'),(16889,962,'post_image_left_id_video','344894438'),(16890,962,'_post_image_left_id_video','field_5d570987dc432'),(16895,804,'url_video_featured_news',''),(16896,804,'_url_video_featured_news','field_5d7ba065745f3'),(16897,964,'author_news','2'),(16898,964,'_author_news','field_5d3083fbbea51'),(16899,964,'select_brand','144'),(16900,964,'_select_brand','field_5d3084d736561'),(16901,964,'featured_post','0'),(16902,964,'_featured_post','field_5d30852c7c4e7'),(16903,964,'legend_featured_image',''),(16904,964,'_legend_featured_image','field_5d39e9d4ef8f8'),(16905,964,'select_posts_related',''),(16906,964,'_select_posts_related','field_5d3afdcff5db7'),(16907,964,'media_assets',''),(16908,964,'_media_assets','field_5d72c2c090478'),(16909,964,'media_assets_archive_zip',''),(16910,964,'_media_assets_archive_zip','field_5d768ad62c946'),(16911,964,'url_video_featured_news','https://www.youtube.com/watch?v=MT-kmGaOIaI'),(16912,964,'_url_video_featured_news','field_5d7ba065745f3'),(16917,965,'author_news','2'),(16918,965,'_author_news','field_5d3083fbbea51'),(16919,965,'select_brand','144'),(16920,965,'_select_brand','field_5d3084d736561'),(16921,965,'featured_post','0'),(16922,965,'_featured_post','field_5d30852c7c4e7'),(16923,965,'legend_featured_image',''),(16924,965,'_legend_featured_image','field_5d39e9d4ef8f8'),(16925,965,'select_posts_related',''),(16926,965,'_select_posts_related','field_5d3afdcff5db7'),(16927,965,'media_assets',''),(16928,965,'_media_assets','field_5d72c2c090478'),(16929,965,'media_assets_archive_zip',''),(16930,965,'_media_assets_archive_zip','field_5d768ad62c946'),(16931,965,'url_video_featured_news',''),(16932,965,'_url_video_featured_news','field_5d7ba065745f3'),(16937,966,'author_news','2'),(16938,966,'_author_news','field_5d3083fbbea51'),(16939,966,'select_brand','144'),(16940,966,'_select_brand','field_5d3084d736561'),(16941,966,'featured_post','0'),(16942,966,'_featured_post','field_5d30852c7c4e7'),(16943,966,'legend_featured_image',''),(16944,966,'_legend_featured_image','field_5d39e9d4ef8f8'),(16945,966,'select_posts_related',''),(16946,966,'_select_posts_related','field_5d3afdcff5db7'),(16947,966,'media_assets',''),(16948,966,'_media_assets','field_5d72c2c090478'),(16949,966,'media_assets_archive_zip',''),(16950,966,'_media_assets_archive_zip','field_5d768ad62c946'),(16951,966,'url_video_featured_news',''),(16952,966,'_url_video_featured_news','field_5d7ba065745f3'),(16953,967,'hero_section_title','Frequently asked questions'),(16954,967,'_hero_section_title','field_5d55a345f8cdb'),(16955,967,'hero_section_image','600'),(16956,967,'_hero_section_image','field_5d55a424f8cdc'),(16957,967,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16958,967,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(16959,967,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(16960,967,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(16961,967,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(16962,967,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(16963,967,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(16964,967,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(16965,967,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(16966,967,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(16967,967,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(16968,967,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(16969,967,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16970,967,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(16971,967,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(16972,967,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(16973,967,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(16974,967,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(16975,967,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(16976,967,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(16977,967,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(16978,967,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(16979,967,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(16980,967,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(16981,967,'hero_section_links','6'),(16982,967,'_hero_section_links','field_5d55a451f8cdd'),(16983,967,'popular_features_title','Popular Features'),(16984,967,'_popular_features_title','field_5d55abb7ffa2d'),(16985,967,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(16986,967,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(16987,967,'popular_features_links_0_popular_features_link_title','Ships'),(16988,967,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(16989,967,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(16990,967,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(16991,967,'popular_features_links_1_popular_features_link_title','Guest Account'),(16992,967,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(16993,967,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(16994,967,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(16995,967,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(16996,967,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(16997,967,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(16998,967,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(16999,967,'popular_features_links_3_popular_features_link_title','Check-in'),(17000,967,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(17001,967,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(17002,967,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(17003,967,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(17004,967,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(17005,967,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17006,967,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(17007,967,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(17008,967,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(17009,967,'popular_features_links','6'),(17010,967,'_popular_features_links','field_5d55ac6b2b75e'),(17011,967,'helpful_articles_title','Helpful articles and how-to\'s'),(17012,967,'_helpful_articles_title','field_5d55b136c34eb'),(17013,967,'post_image_right_title','Solving for the future of cruising.'),(17014,967,'_post_image_right_title','field_5d55b49247b3a'),(17015,967,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17016,967,'_post_image_right_description','field_5d55b49b47b3b'),(17017,967,'post_image_right_title_link','Learn more'),(17018,967,'_post_image_right_title_link','field_5d55b4a747b3c'),(17019,967,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17020,967,'_post_image_right_link','field_5d55b4b247b3d'),(17021,967,'post_image_right_image','527'),(17022,967,'_post_image_right_image','field_5d55b4be47b3e'),(17023,967,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(17024,967,'_post_image_left_title','field_5d55b69a7e8a7'),(17025,967,'post_image_left_link','https://vimeo.com/'),(17026,967,'_post_image_left_link','field_5d55b6a47e8a8'),(17027,967,'post_image_left_image','536'),(17028,967,'_post_image_left_image','field_5d55b6b47e8a9'),(17029,967,'select_posts',''),(17030,967,'_select_posts','field_5d55ba1e32eec'),(17031,967,'seletc_type_link','Vídeo'),(17032,967,'_seletc_type_link','field_5d57093fdc431'),(17033,967,'post_image_left_id_video','344894438'),(17034,967,'_post_image_left_id_video','field_5d570987dc432'),(17035,968,'hero_section_title','Frequently asked questions'),(17036,968,'_hero_section_title','field_5d55a345f8cdb'),(17037,968,'hero_section_image','600'),(17038,968,'_hero_section_image','field_5d55a424f8cdc'),(17039,968,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17040,968,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(17041,968,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(17042,968,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(17043,968,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(17044,968,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(17045,968,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(17046,968,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(17047,968,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(17048,968,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(17049,968,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(17050,968,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(17051,968,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17052,968,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(17053,968,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(17054,968,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(17055,968,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17056,968,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(17057,968,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(17058,968,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(17059,968,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(17060,968,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(17061,968,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(17062,968,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(17063,968,'hero_section_links','6'),(17064,968,'_hero_section_links','field_5d55a451f8cdd'),(17065,968,'popular_features_title','Popular Features'),(17066,968,'_popular_features_title','field_5d55abb7ffa2d'),(17067,968,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17068,968,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(17069,968,'popular_features_links_0_popular_features_link_title','Ships'),(17070,968,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(17071,968,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17072,968,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(17073,968,'popular_features_links_1_popular_features_link_title','Guest Account'),(17074,968,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(17075,968,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(17076,968,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(17077,968,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(17078,968,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(17079,968,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(17080,968,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(17081,968,'popular_features_links_3_popular_features_link_title','Check-in'),(17082,968,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(17083,968,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(17084,968,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(17085,968,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(17086,968,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(17087,968,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17088,968,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(17089,968,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(17090,968,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(17091,968,'popular_features_links','6'),(17092,968,'_popular_features_links','field_5d55ac6b2b75e'),(17093,968,'helpful_articles_title','Helpful articles and how-to\'s'),(17094,968,'_helpful_articles_title','field_5d55b136c34eb'),(17095,968,'post_image_right_title','Solving for the future of cruising.'),(17096,968,'_post_image_right_title','field_5d55b49247b3a'),(17097,968,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17098,968,'_post_image_right_description','field_5d55b49b47b3b'),(17099,968,'post_image_right_title_link','Learn more'),(17100,968,'_post_image_right_title_link','field_5d55b4a747b3c'),(17101,968,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17102,968,'_post_image_right_link','field_5d55b4b247b3d'),(17103,968,'post_image_right_image','527'),(17104,968,'_post_image_right_image','field_5d55b4be47b3e'),(17105,968,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(17106,968,'_post_image_left_title','field_5d55b69a7e8a7'),(17107,968,'post_image_left_link','https://vimeo.com/'),(17108,968,'_post_image_left_link','field_5d55b6a47e8a8'),(17109,968,'post_image_left_image','536'),(17110,968,'_post_image_left_image','field_5d55b6b47e8a9'),(17111,968,'select_posts','a:3:{i:0;s:3:\"392\";i:1;s:3:\"393\";i:2;s:3:\"396\";}'),(17112,968,'_select_posts','field_5d55ba1e32eec'),(17113,968,'seletc_type_link','Vídeo'),(17114,968,'_seletc_type_link','field_5d57093fdc431'),(17115,968,'post_image_left_id_video','344894438'),(17116,968,'_post_image_left_id_video','field_5d570987dc432'),(17117,969,'hero_section_title','Frequently asked questions'),(17118,969,'_hero_section_title','field_5d55a345f8cdb'),(17119,969,'hero_section_image','600'),(17120,969,'_hero_section_image','field_5d55a424f8cdc'),(17121,969,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17122,969,'_hero_section_links_0_hero_section_link','field_5d55a498f8cde'),(17123,969,'hero_section_links_0_hero_section_link_title','Which ships have the app?'),(17124,969,'_hero_section_links_0_hero_section_link_title','field_5d55a4acf8cdf'),(17125,969,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/faq/arrival-and-departure-experience/'),(17126,969,'_hero_section_links_1_hero_section_link','field_5d55a498f8cde'),(17127,969,'hero_section_links_1_hero_section_link_title','What should I expect as I arrive?'),(17128,969,'_hero_section_links_1_hero_section_link_title','field_5d55a4acf8cdf'),(17129,969,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/what-you-need-to-know-before-you-go/'),(17130,969,'_hero_section_links_2_hero_section_link','field_5d55a498f8cde'),(17131,969,'hero_section_links_2_hero_section_link_title','When can I check in after booking?'),(17132,969,'_hero_section_links_2_hero_section_link_title','field_5d55a4acf8cdf'),(17133,969,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17134,969,'_hero_section_links_3_hero_section_link','field_5d55a498f8cde'),(17135,969,'hero_section_links_3_hero_section_link_title','Why do I need a Guest Account?'),(17136,969,'_hero_section_links_3_hero_section_link_title','field_5d55a4acf8cdf'),(17137,969,'hero_section_links_4_hero_section_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17138,969,'_hero_section_links_4_hero_section_link','field_5d55a498f8cde'),(17139,969,'hero_section_links_4_hero_section_link_title','How do I start using the app?'),(17140,969,'_hero_section_links_4_hero_section_link_title','field_5d55a4acf8cdf'),(17141,969,'hero_section_links_5_hero_section_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(17142,969,'_hero_section_links_5_hero_section_link','field_5d55a498f8cde'),(17143,969,'hero_section_links_5_hero_section_link_title','Can I make reservations in the app?'),(17144,969,'_hero_section_links_5_hero_section_link_title','field_5d55a4acf8cdf'),(17145,969,'hero_section_links','6'),(17146,969,'_hero_section_links','field_5d55a451f8cdd'),(17147,969,'popular_features_title','Popular Features'),(17148,969,'_popular_features_title','field_5d55abb7ffa2d'),(17149,969,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17150,969,'_popular_features_links_0_popular_features_link','field_5d55ac6b2b75f'),(17151,969,'popular_features_links_0_popular_features_link_title','Ships'),(17152,969,'_popular_features_links_0_popular_features_link_title','field_5d55ac6b2b760'),(17153,969,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17154,969,'_popular_features_links_1_popular_features_link','field_5d55ac6b2b75f'),(17155,969,'popular_features_links_1_popular_features_link_title','Guest Account'),(17156,969,'_popular_features_links_1_popular_features_link_title','field_5d55ac6b2b760'),(17157,969,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(17158,969,'_popular_features_links_2_popular_features_link','field_5d55ac6b2b75f'),(17159,969,'popular_features_links_2_popular_features_link_title','Expedited Arrival'),(17160,969,'_popular_features_links_2_popular_features_link_title','field_5d55ac6b2b760'),(17161,969,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(17162,969,'_popular_features_links_3_popular_features_link','field_5d55ac6b2b75f'),(17163,969,'popular_features_links_3_popular_features_link_title','Check-in'),(17164,969,'_popular_features_links_3_popular_features_link_title','field_5d55ac6b2b760'),(17165,969,'popular_features_links_4_popular_features_link','http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/'),(17166,969,'_popular_features_links_4_popular_features_link','field_5d55ac6b2b75f'),(17167,969,'popular_features_links_4_popular_features_link_title','Onboard Reservations'),(17168,969,'_popular_features_links_4_popular_features_link_title','field_5d55ac6b2b760'),(17169,969,'popular_features_links_5_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17170,969,'_popular_features_links_5_popular_features_link','field_5d55ac6b2b75f'),(17171,969,'popular_features_links_5_popular_features_link_title','Onboard<br>Wi-Fi'),(17172,969,'_popular_features_links_5_popular_features_link_title','field_5d55ac6b2b760'),(17173,969,'popular_features_links','6'),(17174,969,'_popular_features_links','field_5d55ac6b2b75e'),(17175,969,'helpful_articles_title','Helpful articles and how-to\'s'),(17176,969,'_helpful_articles_title','field_5d55b136c34eb'),(17177,969,'post_image_right_title','Solving for the future of cruising.'),(17178,969,'_post_image_right_title','field_5d55b49247b3a'),(17179,969,'post_image_right_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17180,969,'_post_image_right_description','field_5d55b49b47b3b'),(17181,969,'post_image_right_title_link','Learn more'),(17182,969,'_post_image_right_title_link','field_5d55b4a747b3c'),(17183,969,'post_image_right_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17184,969,'_post_image_right_link','field_5d55b4b247b3d'),(17185,969,'post_image_right_image','527'),(17186,969,'_post_image_right_image','field_5d55b4be47b3e'),(17187,969,'post_image_left_title','Your app lets you get from your car to relaxation in minutes'),(17188,969,'_post_image_left_title','field_5d55b69a7e8a7'),(17189,969,'post_image_left_link','https://vimeo.com/'),(17190,969,'_post_image_left_link','field_5d55b6a47e8a8'),(17191,969,'post_image_left_image','536'),(17192,969,'_post_image_left_image','field_5d55b6b47e8a9'),(17193,969,'select_posts','a:3:{i:0;s:3:\"392\";i:1;s:3:\"393\";i:2;s:3:\"952\";}'),(17194,969,'_select_posts','field_5d55ba1e32eec'),(17195,969,'seletc_type_link','Vídeo'),(17196,969,'_seletc_type_link','field_5d57093fdc431'),(17197,969,'post_image_left_id_video','344894438'),(17198,969,'_post_image_left_id_video','field_5d570987dc432'),(17199,895,'_edit_lock','1591637057:9'),(17204,970,'author_news','2'),(17205,970,'_author_news','field_5d3083fbbea51'),(17206,970,'select_brand','144'),(17207,970,'_select_brand','field_5d3084d736561'),(17208,970,'featured_post','0'),(17209,970,'_featured_post','field_5d30852c7c4e7'),(17210,970,'legend_featured_image',''),(17211,970,'_legend_featured_image','field_5d39e9d4ef8f8'),(17212,970,'select_posts_related',''),(17213,970,'_select_posts_related','field_5d3afdcff5db7'),(17214,970,'media_assets',''),(17215,970,'_media_assets','field_5d72c2c090478'),(17216,970,'media_assets_archive_zip',''),(17217,970,'_media_assets_archive_zip','field_5d768ad62c946'),(17218,970,'url_video_featured_news','https://www.youtube.com/watch?v=RbIlkah2MXM'),(17219,970,'_url_video_featured_news','field_5d7ba065745f3'),(17220,166,'_edit_lock','1571059326:1'),(17221,895,'_edit_last','1'),(17226,971,'author_news','2'),(17227,971,'_author_news','field_5d3083fbbea51'),(17228,971,'select_brand','144'),(17229,971,'_select_brand','field_5d3084d736561'),(17230,971,'featured_post','0'),(17231,971,'_featured_post','field_5d30852c7c4e7'),(17232,971,'legend_featured_image',''),(17233,971,'_legend_featured_image','field_5d39e9d4ef8f8'),(17234,971,'select_posts_related',''),(17235,971,'_select_posts_related','field_5d3afdcff5db7'),(17236,971,'media_assets',''),(17237,971,'_media_assets','field_5d72c2c090478'),(17238,971,'media_assets_archive_zip',''),(17239,971,'_media_assets_archive_zip','field_5d768ad62c946'),(17240,971,'url_video_featured_news',''),(17241,971,'_url_video_featured_news','field_5d7ba065745f3'),(17246,212,'url_video_featured_news','https://vimeo.com/299734138'),(17247,212,'_url_video_featured_news','field_5d7ba065745f3'),(17248,973,'author_news','2'),(17249,973,'_author_news','field_5d3083fbbea51'),(17250,973,'select_brand','88'),(17251,973,'_select_brand','field_5d3084d736561'),(17252,973,'featured_post','1'),(17253,973,'_featured_post','field_5d30852c7c4e7'),(17254,973,'legend_featured_image','Neque porro quisquam est'),(17255,973,'_legend_featured_image','field_5d39e9d4ef8f8'),(17256,973,'select_posts_related',''),(17257,973,'_select_posts_related','field_5d3afdcff5db7'),(17258,973,'archive_audio_mp3',''),(17259,973,'_archive_audio_mp3','field_5d4989a80007c'),(17260,973,'url_video',''),(17261,973,'_url_video','field_5d49897521f43'),(17262,973,'media_assets',''),(17263,973,'_media_assets','field_5d72c2c090478'),(17264,973,'media_assets_archive_zip',''),(17265,973,'_media_assets_archive_zip','field_5d768ad62c946'),(17266,973,'url_video_featured_news',''),(17267,973,'_url_video_featured_news','field_5d7ba065745f3'),(17272,974,'author_news','2'),(17273,974,'_author_news','field_5d3083fbbea51'),(17274,974,'select_brand','88'),(17275,974,'_select_brand','field_5d3084d736561'),(17276,974,'featured_post','1'),(17277,974,'_featured_post','field_5d30852c7c4e7'),(17278,974,'legend_featured_image','Neque porro quisquam est'),(17279,974,'_legend_featured_image','field_5d39e9d4ef8f8'),(17280,974,'select_posts_related',''),(17281,974,'_select_posts_related','field_5d3afdcff5db7'),(17282,974,'archive_audio_mp3',''),(17283,974,'_archive_audio_mp3','field_5d4989a80007c'),(17284,974,'url_video',''),(17285,974,'_url_video','field_5d49897521f43'),(17286,974,'media_assets',''),(17287,974,'_media_assets','field_5d72c2c090478'),(17288,974,'media_assets_archive_zip',''),(17289,974,'_media_assets_archive_zip','field_5d768ad62c946'),(17290,974,'url_video_featured_news',''),(17291,974,'_url_video_featured_news','field_5d7ba065745f3'),(17301,980,'author_news','2'),(17302,980,'_author_news','field_5d3083fbbea51'),(17303,980,'select_brand','88'),(17304,980,'_select_brand','field_5d3084d736561'),(17305,980,'featured_post','1'),(17306,980,'_featured_post','field_5d30852c7c4e7'),(17307,980,'legend_featured_image','Neque porro quisquam est'),(17308,980,'_legend_featured_image','field_5d39e9d4ef8f8'),(17309,980,'select_posts_related',''),(17310,980,'_select_posts_related','field_5d3afdcff5db7'),(17311,980,'archive_audio_mp3',''),(17312,980,'_archive_audio_mp3','field_5d4989a80007c'),(17313,980,'url_video',''),(17314,980,'_url_video','field_5d49897521f43'),(17315,980,'media_assets',''),(17316,980,'_media_assets','field_5d72c2c090478'),(17317,980,'media_assets_archive_zip',''),(17318,980,'_media_assets_archive_zip','field_5d768ad62c946'),(17319,980,'url_video_featured_news','https://vimeo.com/299734138'),(17320,980,'_url_video_featured_news','field_5d7ba065745f3'),(17325,981,'author_news','2'),(17326,981,'_author_news','field_5d3083fbbea51'),(17327,981,'select_brand','88'),(17328,981,'_select_brand','field_5d3084d736561'),(17329,981,'featured_post','1'),(17330,981,'_featured_post','field_5d30852c7c4e7'),(17331,981,'legend_featured_image','Neque porro quisquam est'),(17332,981,'_legend_featured_image','field_5d39e9d4ef8f8'),(17333,981,'select_posts_related',''),(17334,981,'_select_posts_related','field_5d3afdcff5db7'),(17335,981,'archive_audio_mp3',''),(17336,981,'_archive_audio_mp3','field_5d4989a80007c'),(17337,981,'url_video',''),(17338,981,'_url_video','field_5d49897521f43'),(17339,981,'media_assets',''),(17340,981,'_media_assets','field_5d72c2c090478'),(17341,981,'media_assets_archive_zip',''),(17342,981,'_media_assets_archive_zip','field_5d768ad62c946'),(17343,981,'url_video_featured_news','299734138'),(17344,981,'_url_video_featured_news','field_5d7ba065745f3'),(17349,982,'author_news','2'),(17350,982,'_author_news','field_5d3083fbbea51'),(17351,982,'select_brand','88'),(17352,982,'_select_brand','field_5d3084d736561'),(17353,982,'featured_post','1'),(17354,982,'_featured_post','field_5d30852c7c4e7'),(17355,982,'legend_featured_image','Neque porro quisquam est'),(17356,982,'_legend_featured_image','field_5d39e9d4ef8f8'),(17357,982,'select_posts_related',''),(17358,982,'_select_posts_related','field_5d3afdcff5db7'),(17359,982,'archive_audio_mp3',''),(17360,982,'_archive_audio_mp3','field_5d4989a80007c'),(17361,982,'url_video',''),(17362,982,'_url_video','field_5d49897521f43'),(17363,982,'media_assets',''),(17364,982,'_media_assets','field_5d72c2c090478'),(17365,982,'media_assets_archive_zip',''),(17366,982,'_media_assets_archive_zip','field_5d768ad62c946'),(17367,982,'url_video_featured_news','299734138'),(17368,982,'_url_video_featured_news','field_5d7ba065745f3'),(17371,212,'_thumbnail_id','1008'),(17374,983,'author_news','2'),(17375,983,'_author_news','field_5d3083fbbea51'),(17376,983,'select_brand','88'),(17377,983,'_select_brand','field_5d3084d736561'),(17378,983,'featured_post','1'),(17379,983,'_featured_post','field_5d30852c7c4e7'),(17380,983,'legend_featured_image',''),(17381,983,'_legend_featured_image','field_5d39e9d4ef8f8'),(17382,983,'select_posts_related',''),(17383,983,'_select_posts_related','field_5d3afdcff5db7'),(17384,983,'archive_audio_mp3',''),(17385,983,'_archive_audio_mp3','field_5d4989a80007c'),(17386,983,'url_video',''),(17387,983,'_url_video','field_5d49897521f43'),(17388,983,'media_assets',''),(17389,983,'_media_assets','field_5d72c2c090478'),(17390,983,'media_assets_archive_zip',''),(17391,983,'_media_assets_archive_zip','field_5d768ad62c946'),(17392,983,'url_video_featured_news','299734138'),(17393,983,'_url_video_featured_news','field_5d7ba065745f3'),(17398,984,'author_news','2'),(17399,984,'_author_news','field_5d3083fbbea51'),(17400,984,'select_brand','88'),(17401,984,'_select_brand','field_5d3084d736561'),(17402,984,'featured_post','1'),(17403,984,'_featured_post','field_5d30852c7c4e7'),(17404,984,'legend_featured_image',''),(17405,984,'_legend_featured_image','field_5d39e9d4ef8f8'),(17406,984,'select_posts_related',''),(17407,984,'_select_posts_related','field_5d3afdcff5db7'),(17408,984,'archive_audio_mp3',''),(17409,984,'_archive_audio_mp3','field_5d4989a80007c'),(17410,984,'url_video',''),(17411,984,'_url_video','field_5d49897521f43'),(17412,984,'media_assets',''),(17413,984,'_media_assets','field_5d72c2c090478'),(17414,984,'media_assets_archive_zip',''),(17415,984,'_media_assets_archive_zip','field_5d768ad62c946'),(17416,984,'url_video_featured_news','https://vimeo.com/299734138'),(17417,984,'_url_video_featured_news','field_5d7ba065745f3'),(17418,985,'_wp_attached_file','2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise.jpg'),(17419,985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2371;s:6:\"height\";i:1707;s:4:\"file\";s:90:\"2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-768x553.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:91:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:90:\"labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17422,989,'title_hero','Solving for the<br> digital future of<br> cruising'),(17423,989,'_title_hero','field_5d2cbfcfc7b2b'),(17424,989,'title_quote','Tech that'),(17425,989,'_title_quote','field_5d2cc09b51dfa'),(17426,989,'title_strong_quote','ships'),(17427,989,'_title_strong_quote','field_5d2cc0db51dfc'),(17428,989,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(17429,989,'_description_quote','field_5d2cc0a851dfb'),(17430,989,'imagem_quote','45'),(17431,989,'_imagem_quote','field_5d2cc0ed51dfd'),(17432,989,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(17433,989,'_description_blockquote','field_5d2cc22c9da9a'),(17434,989,'author_blockquote','Richard Fain, in an interview with'),(17435,989,'_author_blockquote','field_5d2cc25a9da9b'),(17436,989,'company','TechRepublic'),(17437,989,'_company','field_5d2cc2769da9c'),(17438,989,'company_blockquote','TechRepublic'),(17439,989,'_company_blockquote','field_5d2cc2769da9c'),(17440,989,'title_featured_i','Self service'),(17441,989,'_title_featured_i','field_5d2cc41890f84'),(17442,989,'description_featured_i','All you need to begin the check-in process is a smile.'),(17443,989,'_description_featured_i','field_5d2cc42890f85'),(17444,989,'seletc_type_link_featured_i','Link'),(17445,989,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(17446,989,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(17447,989,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(17448,989,'imagem_featured_i','361'),(17449,989,'_imagem_featured_i','field_5d2cc71559443'),(17450,989,'title_info_numbers','Digital by<br> the numbers'),(17451,989,'_title_info_numbers','field_5d2cc7e517635'),(17452,989,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(17453,989,'_description_info_number','field_5d2cc7f817636'),(17454,989,'app_downloads','3M'),(17455,989,'_app_downloads','field_5d2cc83e17637'),(17456,989,'active_users','1M'),(17457,989,'_active_users','field_5d2cc84617638'),(17458,989,'average_ios_rating','4.6'),(17459,989,'_average_ios_rating','field_5d2cc85217639'),(17460,989,'crew_checkins','14k'),(17461,989,'_crew_checkins','field_5d2cc8631763a'),(17462,989,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(17463,989,'_title_featured_ii','field_5d2cc9741153c'),(17464,989,'description_featured_ii',''),(17465,989,'_description_featured_ii','field_5d2cc97e1153d'),(17466,989,'imagem_featured_ii','45'),(17467,989,'_imagem_featured_ii','field_5d2cc98c1153e'),(17468,989,'seletc_type_link_featured_ii','Link'),(17469,989,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(17470,989,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(17471,989,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(17472,989,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(17473,989,'_title_featured_iii','field_5d2ccafff022a'),(17474,989,'description_featured_iii',''),(17475,989,'_description_featured_iii','field_5d2ccb0cf022b'),(17476,989,'imagem_featured_iii','862'),(17477,989,'_imagem_featured_iii','field_5d2ccb21f022c'),(17478,989,'seletc_type_link_featured_iii','Vídeo'),(17479,989,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(17480,989,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(17481,989,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(17482,989,'subtitle_hero','Our guests often ask…'),(17483,989,'_subtitle_hero','field_5d5711764ff01'),(17484,989,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17485,989,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(17486,989,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(17487,989,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(17488,989,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(17489,989,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(17490,989,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(17491,989,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(17492,989,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(17493,989,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(17494,989,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(17495,989,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(17496,989,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(17497,989,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(17498,989,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(17499,989,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(17500,989,'hero_section_links_4_hero_section_link',''),(17501,989,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(17502,989,'hero_section_links_4_hero_section_link_title',''),(17503,989,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(17504,989,'hero_section_links_5_hero_section_link',''),(17505,989,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(17506,989,'hero_section_links_5_hero_section_link_title',''),(17507,989,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(17508,989,'hero_section_links','6'),(17509,989,'_hero_section_links','field_5d5711cf21851'),(17510,989,'featured_faq_title','Solving the digital future of cruising.'),(17511,989,'_featured_faq_title','field_5d57145bc652e'),(17512,989,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17513,989,'_featured_faq_description','field_5d57146bc652f'),(17514,989,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(17515,989,'_featured_faq_link','field_5d57147ec6530'),(17516,989,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(17517,989,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(17518,989,'popular_features_links_0_popular_features_link_title','Our App'),(17519,989,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(17520,989,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(17521,989,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(17522,989,'popular_features_links_1_popular_features_link_title','Check-in'),(17523,989,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(17524,989,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17525,989,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(17526,989,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(17527,989,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(17528,989,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17529,989,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(17530,989,'popular_features_links_3_popular_features_link_title','Guest Account'),(17531,989,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(17532,989,'popular_features_links','4'),(17533,989,'_popular_features_links','field_5d5714d1c6531'),(17534,989,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17535,989,'_link_explore_our_fleet','field_5d77a90f09145'),(17536,989,'image_explore_our_fleet','908'),(17537,989,'_image_explore_our_fleet','field_5d77a96009146'),(17538,989,'title_explore_our_fleet','Need to find your ship?'),(17539,989,'_title_explore_our_fleet','field_5d77a97809147'),(17540,989,'subtitle_explore_our_fleet','Explore our fleet'),(17541,989,'_subtitle_explore_our_fleet','field_5d77a98709148'),(17542,952,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(17543,952,'_link_app_ios','field_5d4c2862f5de5'),(17544,952,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(17545,952,'_link_app_android','field_5d4c287cf5de6'),(17546,396,'link_app_ios','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(17547,396,'_link_app_ios','field_5d4c2862f5de5'),(17548,396,'link_app_android','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(17549,396,'_link_app_android','field_5d4c287cf5de6'),(17550,992,'title_hero','Solving for the<br> digital future of<br> cruising'),(17551,992,'_title_hero','field_5d2cbfcfc7b2b'),(17552,992,'title_quote','Tech that'),(17553,992,'_title_quote','field_5d2cc09b51dfa'),(17554,992,'title_strong_quote','ships'),(17555,992,'_title_strong_quote','field_5d2cc0db51dfc'),(17556,992,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(17557,992,'_description_quote','field_5d2cc0a851dfb'),(17558,992,'imagem_quote','45'),(17559,992,'_imagem_quote','field_5d2cc0ed51dfd'),(17560,992,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(17561,992,'_description_blockquote','field_5d2cc22c9da9a'),(17562,992,'author_blockquote','Richard Fain, in an interview with'),(17563,992,'_author_blockquote','field_5d2cc25a9da9b'),(17564,992,'company','TechRepublic'),(17565,992,'_company','field_5d2cc2769da9c'),(17566,992,'company_blockquote','TechRepublic'),(17567,992,'_company_blockquote','field_5d2cc2769da9c'),(17568,992,'title_featured_i','Self service'),(17569,992,'_title_featured_i','field_5d2cc41890f84'),(17570,992,'description_featured_i','All you need to begin the check-in process is a smile.'),(17571,992,'_description_featured_i','field_5d2cc42890f85'),(17572,992,'seletc_type_link_featured_i','Link'),(17573,992,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(17574,992,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(17575,992,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(17576,992,'imagem_featured_i','361'),(17577,992,'_imagem_featured_i','field_5d2cc71559443'),(17578,992,'title_info_numbers','Digital by<br> the numbers'),(17579,992,'_title_info_numbers','field_5d2cc7e517635'),(17580,992,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(17581,992,'_description_info_number','field_5d2cc7f817636'),(17582,992,'app_downloads','3M'),(17583,992,'_app_downloads','field_5d2cc83e17637'),(17584,992,'active_users','1M'),(17585,992,'_active_users','field_5d2cc84617638'),(17586,992,'average_ios_rating','4.6'),(17587,992,'_average_ios_rating','field_5d2cc85217639'),(17588,992,'crew_checkins','14k'),(17589,992,'_crew_checkins','field_5d2cc8631763a'),(17590,992,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(17591,992,'_title_featured_ii','field_5d2cc9741153c'),(17592,992,'description_featured_ii',''),(17593,992,'_description_featured_ii','field_5d2cc97e1153d'),(17594,992,'imagem_featured_ii','45'),(17595,992,'_imagem_featured_ii','field_5d2cc98c1153e'),(17596,992,'seletc_type_link_featured_ii','Link'),(17597,992,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(17598,992,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(17599,992,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(17600,992,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(17601,992,'_title_featured_iii','field_5d2ccafff022a'),(17602,992,'description_featured_iii',''),(17603,992,'_description_featured_iii','field_5d2ccb0cf022b'),(17604,992,'imagem_featured_iii','862'),(17605,992,'_imagem_featured_iii','field_5d2ccb21f022c'),(17606,992,'seletc_type_link_featured_iii','Vídeo'),(17607,992,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(17608,992,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(17609,992,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(17610,992,'subtitle_hero','Our guests often ask…'),(17611,992,'_subtitle_hero','field_5d5711764ff01'),(17612,992,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17613,992,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(17614,992,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(17615,992,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(17616,992,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(17617,992,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(17618,992,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(17619,992,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(17620,992,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(17621,992,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(17622,992,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(17623,992,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(17624,992,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(17625,992,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(17626,992,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(17627,992,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(17628,992,'hero_section_links_4_hero_section_link',''),(17629,992,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(17630,992,'hero_section_links_4_hero_section_link_title',''),(17631,992,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(17632,992,'hero_section_links_5_hero_section_link',''),(17633,992,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(17634,992,'hero_section_links_5_hero_section_link_title',''),(17635,992,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(17636,992,'hero_section_links','6'),(17637,992,'_hero_section_links','field_5d5711cf21851'),(17638,992,'featured_faq_title','Where tech meets travel'),(17639,992,'_featured_faq_title','field_5d57145bc652e'),(17640,992,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17641,992,'_featured_faq_description','field_5d57146bc652f'),(17642,992,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(17643,992,'_featured_faq_link','field_5d57147ec6530'),(17644,992,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(17645,992,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(17646,992,'popular_features_links_0_popular_features_link_title','Our App'),(17647,992,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(17648,992,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(17649,992,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(17650,992,'popular_features_links_1_popular_features_link_title','Check-in'),(17651,992,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(17652,992,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17653,992,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(17654,992,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(17655,992,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(17656,992,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17657,992,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(17658,992,'popular_features_links_3_popular_features_link_title','Guest Account'),(17659,992,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(17660,992,'popular_features_links','4'),(17661,992,'_popular_features_links','field_5d5714d1c6531'),(17662,992,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17663,992,'_link_explore_our_fleet','field_5d77a90f09145'),(17664,992,'image_explore_our_fleet','908'),(17665,992,'_image_explore_our_fleet','field_5d77a96009146'),(17666,992,'title_explore_our_fleet','Need to find your ship?'),(17667,992,'_title_explore_our_fleet','field_5d77a97809147'),(17668,992,'subtitle_explore_our_fleet','Explore our fleet'),(17669,992,'_subtitle_explore_our_fleet','field_5d77a98709148'),(17674,993,'author_news','2'),(17675,993,'_author_news','field_5d3083fbbea51'),(17676,993,'select_brand','144'),(17677,993,'_select_brand','field_5d3084d736561'),(17678,993,'featured_post','0'),(17679,993,'_featured_post','field_5d30852c7c4e7'),(17680,993,'legend_featured_image',''),(17681,993,'_legend_featured_image','field_5d39e9d4ef8f8'),(17682,993,'select_posts_related',''),(17683,993,'_select_posts_related','field_5d3afdcff5db7'),(17684,993,'media_assets',''),(17685,993,'_media_assets','field_5d72c2c090478'),(17686,993,'media_assets_archive_zip',''),(17687,993,'_media_assets_archive_zip','field_5d768ad62c946'),(17688,993,'url_video_featured_news',''),(17689,993,'_url_video_featured_news','field_5d7ba065745f3'),(17690,994,'_wp_attached_file','2019/09/1542647075_EDGE-2.jpg'),(17691,994,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2700;s:6:\"height\";i:1800;s:4:\"file\";s:29:\"2019/09/1542647075_EDGE-2.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:30:\"1542647075_EDGE-2-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:29:\"1542647075_EDGE-2-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:21:\"©2018 Michel Verdure\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17692,995,'_edit_lock','1569940777:2'),(17693,995,'_edit_last','1'),(17694,998,'_edit_lock','1592842305:9'),(17695,999,'_wp_attached_file','2019/09/Ovation_Daytime_Delivery-v04_747x2048.png'),(17696,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:2048;s:4:\"file\";s:49:\"2019/09/Ovation_Daytime_Delivery-v04_747x2048.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-109x300.png\";s:5:\"width\";i:109;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\";s:5:\"width\";i:374;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:50:\"Ovation_Daytime_Delivery-v04_747x2048-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:49:\"Ovation_Daytime_Delivery-v04_747x2048-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17697,998,'_edit_last','2'),(17698,998,'select_brand','144'),(17699,998,'_select_brand','field_5d2cda81bbd5a'),(17700,998,'subtitle_ship','Ovation of the Seas®'),(17701,998,'_subtitle_ship','field_5d2ce1bd8774a'),(17702,998,'description_ship','Whether you’re suiting up for an aerial adventure on the only skydiving simulator at sea or sipping expertly crafted cocktails with a splash of cutting-edge tech, you’re in for a full-on cruise vacation reboot.'),(17703,998,'_description_ship','field_5d2ce1f38774b'),(17704,998,'title_brand_ship','Ovation of the Seas®'),(17705,998,'_title_brand_ship','field_5d2f247516989'),(17706,998,'description_brand_ship','Take on Alaska with edge-of-your-seat entertainment, game-changing family fun you can enjoy in any climate, and breathtaking vistas from every stateroom. '),(17707,998,'_description_brand_ship','field_5d2f24851698a'),(17708,998,'photo_ship','999'),(17709,998,'_photo_ship','field_5d2f24901698b'),(17710,998,'link_appstore','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(17711,998,'_link_appstore','field_5d2f2772dcd08'),(17712,998,'link_playstore','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(17713,998,'_link_playstore','field_5d2f277fdcd09'),(17714,998,'technology_0_title_technology','Mobile App'),(17715,998,'_technology_0_title_technology','field_5d2f2748dcd06'),(17716,998,'technology_0_description_technology','The app provides functionality for pre-cruise and onboard needs to make the most of your vacation.'),(17717,998,'_technology_0_description_technology','field_5d2f2754dcd07'),(17718,998,'technology_1_title_technology','Digital Key'),(17719,998,'_technology_1_title_technology','field_5d2f2748dcd06'),(17720,998,'technology_1_description_technology','Access your stateroom with the convenience of your mobile device.'),(17721,998,'_technology_1_description_technology','field_5d2f2754dcd07'),(17722,998,'technology','2'),(17723,998,'_technology','field_5d2f2738dcd05'),(17724,998,'discover_ship_title','Discover Royal Caribbean Cruising'),(17725,998,'_discover_ship_title','field_5d2f2b854d072'),(17726,998,'discover_ship_text_link','Browse Ovation of the Seas Sailings'),(17727,998,'_discover_ship_text_link','field_5d4d727f27026'),(17728,998,'discover_ship_link','https://www.royalcaribbean.com/cruise-ships/ovation-of-the-seas'),(17729,998,'_discover_ship_link','field_5d2f2ba44d073'),(17730,998,'discover_ship_photo','1000'),(17731,998,'_discover_ship_photo','field_5d2f2bbc4d075'),(17732,998,'gallery',''),(17733,998,'_gallery','field_5d2f2c89081ed'),(17734,1000,'_wp_attached_file','2019/09/RCI_AUNZ_OV_JAN9_6.jpg'),(17735,1000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4600;s:6:\"height\";i:2584;s:4:\"file\";s:30:\"2019/09/RCI_AUNZ_OV_JAN9_6.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:31:\"RCI_AUNZ_OV_JAN9_6-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:30:\"RCI_AUNZ_OV_JAN9_6-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:10:\"Bill Blair\";s:6:\"camera\";s:5:\"FC550\";s:7:\"caption\";s:130:\"OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017\";s:17:\"created_timestamp\";s:10:\"1483940047\";s:9:\"copyright\";s:11:\"Royal Owned\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(17740,1001,'_wp_attached_file','2019/09/Royalscreen-e1568990158558.png'),(17741,1001,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:1083;s:4:\"file\";s:38:\"2019/09/Royalscreen-e1568990158558.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Royalscreen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Royalscreen-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Royalscreen-768x1663.png\";s:5:\"width\";i:768;s:6:\"height\";i:1663;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Royalscreen-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Royalscreen-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:24:\"Royalscreen-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:23:\"Royalscreen-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:24:\"Royalscreen-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:23:\"Royalscreen-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:23:\"Royalscreen-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:24:\"Royalscreen-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:23:\"Royalscreen-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:23:\"Royalscreen-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:24:\"Royalscreen-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:23:\"Royalscreen-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17742,952,'content_faq_1_image_featured_row','1001'),(17743,952,'_content_faq_1_image_featured_row','field_5d4c26e83bd78'),(17744,952,'content_faq_1_text_row_content','<!-- wp:paragraph -->\r\n<h3><a href=\"http://royaldigital.labcp.co/brands/royal-caribbean/\">Royal Caribbean International</a></h3>\r\n<!-- /wp:paragraph --> <!-- wp:list -->\r\n<ul>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/\">Ovation of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/quantum-of-the-seas/\">Quantum of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<!-- /wp:paragraph -->'),(17745,952,'_content_faq_1_text_row_content','field_5d4c272f3bd79'),(17746,952,'content_faq_2_image_featured_row','1005'),(17747,952,'_content_faq_2_image_featured_row','field_5d4c26e83bd78'),(17748,952,'content_faq_2_text_row_content','<h3><a href=\"http://royaldigital.labcp.co/brands/celebrity/\">Celebrity Cruises</a></h3>\r\n<!-- /wp:paragraph --> <!-- wp:list -->\r\n<ul>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/summit/\">Summit</a></li>\r\n</ul>'),(17749,952,'_content_faq_2_text_row_content','field_5d4c272f3bd79'),(17750,952,'content_faq_3_image_featured_row','1004'),(17751,952,'_content_faq_3_image_featured_row','field_5d4c26e83bd78'),(17752,952,'content_faq_3_text_row_content','<h3><a href=\"http://royaldigital.labcp.co/brands/azamara/\">Azamara</a></h3>\r\n<!-- /wp:paragraph --> <!-- wp:list -->\r\n<ul>\r\n 	<li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li>\r\n</ul>\r\n<!-- /wp:list --> <!-- wp:paragraph -->\r\n\r\n&nbsp;'),(17753,952,'_content_faq_3_text_row_content','field_5d4c272f3bd79'),(17754,952,'content_faq_4_image_featured_row',''),(17755,952,'_content_faq_4_image_featured_row','field_5d4c26e83bd78'),(17756,952,'content_faq_4_text_row_content','We continue to develop and enhance the app and are looking for your ideas and feedback. Email AppFeedback@rccl.com and tell us what you’d like to see in the future.'),(17757,952,'_content_faq_4_text_row_content','field_5d4c272f3bd79'),(17758,1001,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1125;s:6:\"height\";i:2436;s:4:\"file\";s:15:\"Royalscreen.png\";}}'),(17763,1002,'author_news','2'),(17764,1002,'_author_news','field_5d3083fbbea51'),(17765,1002,'select_brand','88'),(17766,1002,'_select_brand','field_5d3084d736561'),(17767,1002,'featured_post','1'),(17768,1002,'_featured_post','field_5d30852c7c4e7'),(17769,1002,'legend_featured_image',''),(17770,1002,'_legend_featured_image','field_5d39e9d4ef8f8'),(17771,1002,'select_posts_related',''),(17772,1002,'_select_posts_related','field_5d3afdcff5db7'),(17773,1002,'archive_audio_mp3',''),(17774,1002,'_archive_audio_mp3','field_5d4989a80007c'),(17775,1002,'url_video',''),(17776,1002,'_url_video','field_5d49897521f43'),(17777,1002,'media_assets',''),(17778,1002,'_media_assets','field_5d72c2c090478'),(17779,1002,'media_assets_archive_zip',''),(17780,1002,'_media_assets_archive_zip','field_5d768ad62c946'),(17781,1002,'url_video_featured_news','https://vimeo.com/299734138'),(17782,1002,'_url_video_featured_news','field_5d7ba065745f3'),(17783,1003,'_wp_attached_file','2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM.png'),(17784,1003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3360;s:6:\"height\";i:1894;s:4:\"file\";s:49:\"2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-768x433.png\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2019-09-20-at-10.42.06-AM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-10.42.06-AM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17791,1004,'_wp_attached_file','2019/09/azamara-e1568992590120.png'),(17792,1004,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:866;s:4:\"file\";s:34:\"2019/09/azamara-e1568992590120.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"azamara-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"azamara-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"azamara-768x1663.png\";s:5:\"width\";i:768;s:6:\"height\";i:1663;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"azamara-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"azamara-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:20:\"azamara-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:19:\"azamara-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:20:\"azamara-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:19:\"azamara-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:19:\"azamara-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:20:\"azamara-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:19:\"azamara-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:19:\"azamara-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:20:\"azamara-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:19:\"azamara-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17793,1005,'_wp_attached_file','2019/09/celebrity-e1568992569581.png'),(17794,1005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:866;s:4:\"file\";s:36:\"2019/09/celebrity-e1568992569581.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"celebrity-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"celebrity-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"celebrity-768x1663.png\";s:5:\"width\";i:768;s:6:\"height\";i:1663;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"celebrity-473x1024.png\";s:5:\"width\";i:473;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"celebrity-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:22:\"celebrity-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:21:\"celebrity-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:22:\"celebrity-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:21:\"celebrity-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:21:\"celebrity-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:22:\"celebrity-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:21:\"celebrity-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:21:\"celebrity-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:22:\"celebrity-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:21:\"celebrity-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17795,1005,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1125;s:6:\"height\";i:2436;s:4:\"file\";s:13:\"celebrity.png\";}}'),(17796,1004,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1125;s:6:\"height\";i:2436;s:4:\"file\";s:11:\"azamara.png\";}}'),(17797,1006,'_wp_attached_file','2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM.png'),(17798,1006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1930;s:6:\"height\";i:1068;s:4:\"file\";s:48:\"2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-300x166.png\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-768x425.png\";s:5:\"width\";i:768;s:6:\"height\";i:425;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\";s:5:\"width\";i:1024;s:6:\"height\";i:567;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-08-09-at-2.23.20-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-08-09-at-2.23.20-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17799,1007,'_wp_attached_file','2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM.png'),(17800,1007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1932;s:6:\"height\";i:1274;s:4:\"file\";s:48:\"2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-768x506.png\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-09-20-at-3.33.58-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-09-20-at-3.33.58-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(17801,1008,'_wp_attached_file','2019/09/appusage.jpg'),(17802,1008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2019/09/appusage.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"appusage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"appusage-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"appusage-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"appusage-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"appusage-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"appusage-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"appusage-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:5:{s:4:\"file\";s:21:\"appusage-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:167;s:2:\"x2\";i:4032;s:2:\"y2\";i:2853;s:14:\"original_width\";i:4032;s:15:\"original_height\";i:3024;}}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"appusage-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"appusage-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"appusage-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"appusage-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"appusage-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"appusage-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:5:{s:4:\"file\";s:20:\"appusage-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:0;s:1:\"y\";i:167;s:2:\"x2\";i:4032;s:2:\"y2\";i:2853;s:14:\"original_width\";i:4032;s:15:\"original_height\";i:3024;}}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569246232\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(17807,1009,'author_news','2'),(17808,1009,'_author_news','field_5d3083fbbea51'),(17809,1009,'select_brand','88'),(17810,1009,'_select_brand','field_5d3084d736561'),(17811,1009,'featured_post','1'),(17812,1009,'_featured_post','field_5d30852c7c4e7'),(17813,1009,'legend_featured_image',''),(17814,1009,'_legend_featured_image','field_5d39e9d4ef8f8'),(17815,1009,'select_posts_related',''),(17816,1009,'_select_posts_related','field_5d3afdcff5db7'),(17817,1009,'archive_audio_mp3',''),(17818,1009,'_archive_audio_mp3','field_5d4989a80007c'),(17819,1009,'url_video',''),(17820,1009,'_url_video','field_5d49897521f43'),(17821,1009,'media_assets',''),(17822,1009,'_media_assets','field_5d72c2c090478'),(17823,1009,'media_assets_archive_zip',''),(17824,1009,'_media_assets_archive_zip','field_5d768ad62c946'),(17825,1009,'url_video_featured_news','https://vimeo.com/299734138'),(17826,1009,'_url_video_featured_news','field_5d7ba065745f3'),(17835,1011,'author_news','2'),(17836,1011,'_author_news','field_5d3083fbbea51'),(17837,1011,'select_brand','88'),(17838,1011,'_select_brand','field_5d3084d736561'),(17839,1011,'featured_post','1'),(17840,1011,'_featured_post','field_5d30852c7c4e7'),(17841,1011,'legend_featured_image',''),(17842,1011,'_legend_featured_image','field_5d39e9d4ef8f8'),(17843,1011,'select_posts_related',''),(17844,1011,'_select_posts_related','field_5d3afdcff5db7'),(17845,1011,'archive_audio_mp3',''),(17846,1011,'_archive_audio_mp3','field_5d4989a80007c'),(17847,1011,'url_video',''),(17848,1011,'_url_video','field_5d49897521f43'),(17849,1011,'media_assets',''),(17850,1011,'_media_assets','field_5d72c2c090478'),(17851,1011,'media_assets_archive_zip',''),(17852,1011,'_media_assets_archive_zip','field_5d768ad62c946'),(17853,1011,'url_video_featured_news','https://vimeo.com/299734138'),(17854,1011,'_url_video_featured_news','field_5d7ba065745f3'),(17859,1013,'title_hero','Solving for the<br> digital future of<br> cruising'),(17860,1013,'_title_hero','field_5d2cbfcfc7b2b'),(17861,1013,'title_quote','Tech that'),(17862,1013,'_title_quote','field_5d2cc09b51dfa'),(17863,1013,'title_strong_quote','ships'),(17864,1013,'_title_strong_quote','field_5d2cc0db51dfc'),(17865,1013,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(17866,1013,'_description_quote','field_5d2cc0a851dfb'),(17867,1013,'imagem_quote','45'),(17868,1013,'_imagem_quote','field_5d2cc0ed51dfd'),(17869,1013,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(17870,1013,'_description_blockquote','field_5d2cc22c9da9a'),(17871,1013,'author_blockquote','Richard Fain, in an interview with'),(17872,1013,'_author_blockquote','field_5d2cc25a9da9b'),(17873,1013,'company','TechRepublic'),(17874,1013,'_company','field_5d2cc2769da9c'),(17875,1013,'company_blockquote','TechRepublic'),(17876,1013,'_company_blockquote','field_5d2cc2769da9c'),(17877,1013,'title_featured_i','Self service'),(17878,1013,'_title_featured_i','field_5d2cc41890f84'),(17879,1013,'description_featured_i','All you need to begin the check-in process is a smile.'),(17880,1013,'_description_featured_i','field_5d2cc42890f85'),(17881,1013,'seletc_type_link_featured_i','Link'),(17882,1013,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(17883,1013,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(17884,1013,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(17885,1013,'imagem_featured_i','361'),(17886,1013,'_imagem_featured_i','field_5d2cc71559443'),(17887,1013,'title_info_numbers','Digital by<br> the numbers'),(17888,1013,'_title_info_numbers','field_5d2cc7e517635'),(17889,1013,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(17890,1013,'_description_info_number','field_5d2cc7f817636'),(17891,1013,'app_downloads','3.3M'),(17892,1013,'_app_downloads','field_5d2cc83e17637'),(17893,1013,'active_users','1M'),(17894,1013,'_active_users','field_5d2cc84617638'),(17895,1013,'average_ios_rating','4.6'),(17896,1013,'_average_ios_rating','field_5d2cc85217639'),(17897,1013,'crew_checkins','14k'),(17898,1013,'_crew_checkins','field_5d2cc8631763a'),(17899,1013,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(17900,1013,'_title_featured_ii','field_5d2cc9741153c'),(17901,1013,'description_featured_ii',''),(17902,1013,'_description_featured_ii','field_5d2cc97e1153d'),(17903,1013,'imagem_featured_ii','45'),(17904,1013,'_imagem_featured_ii','field_5d2cc98c1153e'),(17905,1013,'seletc_type_link_featured_ii','Link'),(17906,1013,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(17907,1013,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(17908,1013,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(17909,1013,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(17910,1013,'_title_featured_iii','field_5d2ccafff022a'),(17911,1013,'description_featured_iii',''),(17912,1013,'_description_featured_iii','field_5d2ccb0cf022b'),(17913,1013,'imagem_featured_iii','862'),(17914,1013,'_imagem_featured_iii','field_5d2ccb21f022c'),(17915,1013,'seletc_type_link_featured_iii','Vídeo'),(17916,1013,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(17917,1013,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(17918,1013,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(17919,1013,'subtitle_hero','Our guests often ask…'),(17920,1013,'_subtitle_hero','field_5d5711764ff01'),(17921,1013,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17922,1013,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(17923,1013,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(17924,1013,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(17925,1013,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(17926,1013,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(17927,1013,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(17928,1013,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(17929,1013,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(17930,1013,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(17931,1013,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(17932,1013,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(17933,1013,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(17934,1013,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(17935,1013,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(17936,1013,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(17937,1013,'hero_section_links_4_hero_section_link',''),(17938,1013,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(17939,1013,'hero_section_links_4_hero_section_link_title',''),(17940,1013,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(17941,1013,'hero_section_links_5_hero_section_link',''),(17942,1013,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(17943,1013,'hero_section_links_5_hero_section_link_title',''),(17944,1013,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(17945,1013,'hero_section_links','6'),(17946,1013,'_hero_section_links','field_5d5711cf21851'),(17947,1013,'featured_faq_title','Where tech meets travel'),(17948,1013,'_featured_faq_title','field_5d57145bc652e'),(17949,1013,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(17950,1013,'_featured_faq_description','field_5d57146bc652f'),(17951,1013,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(17952,1013,'_featured_faq_link','field_5d57147ec6530'),(17953,1013,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(17954,1013,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(17955,1013,'popular_features_links_0_popular_features_link_title','Our App'),(17956,1013,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(17957,1013,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(17958,1013,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(17959,1013,'popular_features_links_1_popular_features_link_title','Check-in'),(17960,1013,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(17961,1013,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(17962,1013,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(17963,1013,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(17964,1013,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(17965,1013,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(17966,1013,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(17967,1013,'popular_features_links_3_popular_features_link_title','Guest Account'),(17968,1013,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(17969,1013,'popular_features_links','4'),(17970,1013,'_popular_features_links','field_5d5714d1c6531'),(17971,1013,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(17972,1013,'_link_explore_our_fleet','field_5d77a90f09145'),(17973,1013,'image_explore_our_fleet','908'),(17974,1013,'_image_explore_our_fleet','field_5d77a96009146'),(17975,1013,'title_explore_our_fleet','Need to find your ship?'),(17976,1013,'_title_explore_our_fleet','field_5d77a97809147'),(17977,1013,'subtitle_explore_our_fleet','Explore our fleet'),(17978,1013,'_subtitle_explore_our_fleet','field_5d77a98709148'),(17983,312,'media_assets',''),(17984,312,'_media_assets','field_5d72c2c090478'),(17985,312,'media_assets_archive_zip',''),(17986,312,'_media_assets_archive_zip','field_5d768ad62c946'),(17987,312,'url_video_featured_news',''),(17988,312,'_url_video_featured_news','field_5d7ba065745f3'),(17989,1014,'author_news','2'),(17990,1014,'_author_news','field_5d3083fbbea51'),(17991,1014,'select_brand','144'),(17992,1014,'_select_brand','field_5d3084d736561'),(17993,1014,'featured_post','0'),(17994,1014,'_featured_post','field_5d30852c7c4e7'),(17995,1014,'legend_featured_image',''),(17996,1014,'_legend_featured_image','field_5d39e9d4ef8f8'),(17997,1014,'select_posts_related',''),(17998,1014,'_select_posts_related','field_5d3afdcff5db7'),(17999,1014,'media_assets',''),(18000,1014,'_media_assets','field_5d72c2c090478'),(18001,1014,'media_assets_archive_zip',''),(18002,1014,'_media_assets_archive_zip','field_5d768ad62c946'),(18003,1014,'url_video_featured_news',''),(18004,1014,'_url_video_featured_news','field_5d7ba065745f3'),(18005,1016,'url_video_featured',''),(18006,1016,'_url_video_featured','field_5d4b2b239e718'),(18007,1016,'content_faq_0_image_featured_row','939'),(18008,1016,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(18009,1016,'content_faq_0_text_row_content','<span style=\"font-weight: 400;\">Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </span>\r\n<h3>At home</h3>\r\n<b>How can I download the app? </b>\r\n\r\n<span style=\"font-weight: 400;\">Android users can find the Royal Caribbean International, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. If you\'ve used the app before, there is no need to download it again. If you haven\'t downloaded the app yet, you will need to do so at least 48 hours in advance of your first sailing day to take advantage of its features.</span>\r\n\r\n<b>How do I set up a Guest Account? </b>\r\n\r\n<span style=\"font-weight: 400;\">Guest Accounts help organize your information and planning all in one convenient and easy location. </span><a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\"><span style=\"font-weight: 400;\">Click here</span></a> <span style=\"font-weight: 400;\">for more information. </span>\r\n\r\n<b>What does linking my sailing mean? </b>\r\n\r\n<span style=\"font-weight: 400;\">Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically.</span>\r\n\r\n<span style=\"font-weight: 400;\">If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation.</span>\r\n\r\n<b>When can I check in after booking?</b>\r\n\r\n<span style=\"font-weight: 400;\">Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. </span><span style=\"font-weight: 400;\"><a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">Checking in online</a> allows all guests in your party to board more quickly on your day of sailing. <a href=\"http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/\">Expedited Arrival</a></span><span style=\"font-weight: 400;\"> will speed up your onboarding experience at the terminal!</span>\r\n\r\n<span style=\"font-weight: 400;\">For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the Hints and Tips link. </span>\r\n<h3>Onboard</h3>\r\n<b>Connect to ship WiFi and launch the app once onboard</b>\r\n\r\n<span style=\"font-weight: 400;\">Connect, and use the app at no cost. </span><a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\"><span style=\"font-weight: 400;\">It\'s easy</span></a><span style=\"font-weight: 400;\">!</span>\r\n\r\n<b>Start booking activities, specialty dining, shore excursions and more.</b>\r\n\r\n<a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\"><span style=\"font-weight: 400;\">Use your app to book</span></a> all the excitement, fun, and relaxation to make the most of your vacation with us.\r\n\r\n<span style=\"font-weight: 400;\">If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</span>'),(18010,1016,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(18011,1016,'content_faq','1'),(18012,1016,'_content_faq','field_5d4c26b63bd77'),(18013,1016,'select_posts_related','a:3:{i:0;s:3:\"391\";i:1;s:3:\"332\";i:2;s:3:\"337\";}'),(18014,1016,'_select_posts_related','field_5d4b2b239e75e'),(18015,1016,'download_app_caribbean_digital','1'),(18016,1016,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(18017,1016,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(18018,1016,'_need_more_help','field_5d4c2771f5de3'),(18019,1016,'author_news','2'),(18020,1016,'_author_news','field_5d4b2aa11701b'),(18021,1016,'description_post','What Guests should know before sailing'),(18022,1016,'_description_post','field_5d55bc8c63af0'),(18023,1017,'_edit_lock','1595944116:9'),(18024,1017,'_edit_last','4'),(18025,1017,'media_assets',''),(18026,1017,'_media_assets','field_5d72c2c090478'),(18027,1017,'media_assets_archive_zip',''),(18028,1017,'_media_assets_archive_zip','field_5d768ad62c946'),(18029,1017,'author_news','4'),(18030,1017,'_author_news','field_5d3083fbbea51'),(18031,1017,'select_brand','144'),(18032,1017,'_select_brand','field_5d3084d736561'),(18033,1017,'featured_post','0'),(18034,1017,'_featured_post','field_5d30852c7c4e7'),(18035,1017,'url_video_featured_news',''),(18036,1017,'_url_video_featured_news','field_5d7ba065745f3'),(18037,1017,'legend_featured_image',''),(18038,1017,'_legend_featured_image','field_5d39e9d4ef8f8'),(18039,1017,'select_posts_related',''),(18040,1017,'_select_posts_related','field_5d3afdcff5db7'),(18041,1018,'media_assets',''),(18042,1018,'_media_assets','field_5d72c2c090478'),(18043,1018,'media_assets_archive_zip',''),(18044,1018,'_media_assets_archive_zip','field_5d768ad62c946'),(18045,1018,'author_news',''),(18046,1018,'_author_news','field_5d3083fbbea51'),(18047,1018,'select_brand',''),(18048,1018,'_select_brand','field_5d3084d736561'),(18049,1018,'featured_post','0'),(18050,1018,'_featured_post','field_5d30852c7c4e7'),(18051,1018,'url_video_featured_news',''),(18052,1018,'_url_video_featured_news','field_5d7ba065745f3'),(18053,1018,'legend_featured_image',''),(18054,1018,'_legend_featured_image','field_5d39e9d4ef8f8'),(18055,1018,'select_posts_related',''),(18056,1018,'_select_posts_related','field_5d3afdcff5db7'),(18057,1017,'_thumbnail_id','1123'),(18058,1020,'media_assets',''),(18059,1020,'_media_assets','field_5d72c2c090478'),(18060,1020,'media_assets_archive_zip',''),(18061,1020,'_media_assets_archive_zip','field_5d768ad62c946'),(18062,1020,'author_news','2'),(18063,1020,'_author_news','field_5d3083fbbea51'),(18064,1020,'select_brand','144'),(18065,1020,'_select_brand','field_5d3084d736561'),(18066,1020,'featured_post','0'),(18067,1020,'_featured_post','field_5d30852c7c4e7'),(18068,1020,'url_video_featured_news',''),(18069,1020,'_url_video_featured_news','field_5d7ba065745f3'),(18070,1020,'legend_featured_image',''),(18071,1020,'_legend_featured_image','field_5d39e9d4ef8f8'),(18072,1020,'select_posts_related',''),(18073,1020,'_select_posts_related','field_5d3afdcff5db7'),(18074,1022,'media_assets',''),(18075,1022,'_media_assets','field_5d72c2c090478'),(18076,1022,'media_assets_archive_zip',''),(18077,1022,'_media_assets_archive_zip','field_5d768ad62c946'),(18078,1022,'author_news','2'),(18079,1022,'_author_news','field_5d3083fbbea51'),(18080,1022,'select_brand','144'),(18081,1022,'_select_brand','field_5d3084d736561'),(18082,1022,'featured_post','0'),(18083,1022,'_featured_post','field_5d30852c7c4e7'),(18084,1022,'url_video_featured_news',''),(18085,1022,'_url_video_featured_news','field_5d7ba065745f3'),(18086,1022,'legend_featured_image',''),(18087,1022,'_legend_featured_image','field_5d39e9d4ef8f8'),(18088,1022,'select_posts_related',''),(18089,1022,'_select_posts_related','field_5d3afdcff5db7'),(18090,1023,'media_assets',''),(18091,1023,'_media_assets','field_5d72c2c090478'),(18092,1023,'media_assets_archive_zip',''),(18093,1023,'_media_assets_archive_zip','field_5d768ad62c946'),(18094,1023,'author_news','2'),(18095,1023,'_author_news','field_5d3083fbbea51'),(18096,1023,'select_brand','144'),(18097,1023,'_select_brand','field_5d3084d736561'),(18098,1023,'featured_post','0'),(18099,1023,'_featured_post','field_5d30852c7c4e7'),(18100,1023,'url_video_featured_news',''),(18101,1023,'_url_video_featured_news','field_5d7ba065745f3'),(18102,1023,'legend_featured_image',''),(18103,1023,'_legend_featured_image','field_5d39e9d4ef8f8'),(18104,1023,'select_posts_related',''),(18105,1023,'_select_posts_related','field_5d3afdcff5db7'),(18106,1024,'_edit_lock','1571762385:2'),(18107,1024,'_thumbnail_id','985'),(18108,1024,'_edit_last','2'),(18109,1024,'media_assets',''),(18110,1024,'_media_assets','field_5d72c2c090478'),(18111,1024,'media_assets_archive_zip',''),(18112,1024,'_media_assets_archive_zip','field_5d768ad62c946'),(18113,1024,'author_news','2'),(18114,1024,'_author_news','field_5d3083fbbea51'),(18115,1024,'select_brand','144'),(18116,1024,'_select_brand','field_5d3084d736561'),(18117,1024,'featured_post','0'),(18118,1024,'_featured_post','field_5d30852c7c4e7'),(18119,1024,'url_video_featured_news',''),(18120,1024,'_url_video_featured_news','field_5d7ba065745f3'),(18121,1024,'legend_featured_image',''),(18122,1024,'_legend_featured_image','field_5d39e9d4ef8f8'),(18123,1024,'select_posts_related',''),(18124,1024,'_select_posts_related','field_5d3afdcff5db7'),(18125,1026,'media_assets',''),(18126,1026,'_media_assets','field_5d72c2c090478'),(18127,1026,'media_assets_archive_zip',''),(18128,1026,'_media_assets_archive_zip','field_5d768ad62c946'),(18129,1026,'author_news','2'),(18130,1026,'_author_news','field_5d3083fbbea51'),(18131,1026,'select_brand','144'),(18132,1026,'_select_brand','field_5d3084d736561'),(18133,1026,'featured_post','0'),(18134,1026,'_featured_post','field_5d30852c7c4e7'),(18135,1026,'url_video_featured_news',''),(18136,1026,'_url_video_featured_news','field_5d7ba065745f3'),(18137,1026,'legend_featured_image',''),(18138,1026,'_legend_featured_image','field_5d39e9d4ef8f8'),(18139,1026,'select_posts_related',''),(18140,1026,'_select_posts_related','field_5d3afdcff5db7'),(18141,1027,'media_assets',''),(18142,1027,'_media_assets','field_5d72c2c090478'),(18143,1027,'media_assets_archive_zip',''),(18144,1027,'_media_assets_archive_zip','field_5d768ad62c946'),(18145,1027,'author_news','2'),(18146,1027,'_author_news','field_5d3083fbbea51'),(18147,1027,'select_brand','144'),(18148,1027,'_select_brand','field_5d3084d736561'),(18149,1027,'featured_post','0'),(18150,1027,'_featured_post','field_5d30852c7c4e7'),(18151,1027,'url_video_featured_news',''),(18152,1027,'_url_video_featured_news','field_5d7ba065745f3'),(18153,1027,'legend_featured_image',''),(18154,1027,'_legend_featured_image','field_5d39e9d4ef8f8'),(18155,1027,'select_posts_related',''),(18156,1027,'_select_posts_related','field_5d3afdcff5db7'),(18157,1029,'media_assets',''),(18158,1029,'_media_assets','field_5d72c2c090478'),(18159,1029,'media_assets_archive_zip',''),(18160,1029,'_media_assets_archive_zip','field_5d768ad62c946'),(18161,1029,'author_news','2'),(18162,1029,'_author_news','field_5d3083fbbea51'),(18163,1029,'select_brand','144'),(18164,1029,'_select_brand','field_5d3084d736561'),(18165,1029,'featured_post','0'),(18166,1029,'_featured_post','field_5d30852c7c4e7'),(18167,1029,'url_video_featured_news',''),(18168,1029,'_url_video_featured_news','field_5d7ba065745f3'),(18169,1029,'legend_featured_image',''),(18170,1029,'_legend_featured_image','field_5d39e9d4ef8f8'),(18171,1029,'select_posts_related',''),(18172,1029,'_select_posts_related','field_5d3afdcff5db7'),(18173,1030,'media_assets',''),(18174,1030,'_media_assets','field_5d72c2c090478'),(18175,1030,'media_assets_archive_zip',''),(18176,1030,'_media_assets_archive_zip','field_5d768ad62c946'),(18177,1030,'author_news','2'),(18178,1030,'_author_news','field_5d3083fbbea51'),(18179,1030,'select_brand','144'),(18180,1030,'_select_brand','field_5d3084d736561'),(18181,1030,'featured_post','0'),(18182,1030,'_featured_post','field_5d30852c7c4e7'),(18183,1030,'url_video_featured_news',''),(18184,1030,'_url_video_featured_news','field_5d7ba065745f3'),(18185,1030,'legend_featured_image',''),(18186,1030,'_legend_featured_image','field_5d39e9d4ef8f8'),(18187,1030,'select_posts_related',''),(18188,1030,'_select_posts_related','field_5d3afdcff5db7'),(18189,1032,'media_assets',''),(18190,1032,'_media_assets','field_5d72c2c090478'),(18191,1032,'media_assets_archive_zip',''),(18192,1032,'_media_assets_archive_zip','field_5d768ad62c946'),(18193,1032,'author_news','2'),(18194,1032,'_author_news','field_5d3083fbbea51'),(18195,1032,'select_brand','144'),(18196,1032,'_select_brand','field_5d3084d736561'),(18197,1032,'featured_post','0'),(18198,1032,'_featured_post','field_5d30852c7c4e7'),(18199,1032,'url_video_featured_news',''),(18200,1032,'_url_video_featured_news','field_5d7ba065745f3'),(18201,1032,'legend_featured_image',''),(18202,1032,'_legend_featured_image','field_5d39e9d4ef8f8'),(18203,1032,'select_posts_related',''),(18204,1032,'_select_posts_related','field_5d3afdcff5db7'),(18205,1033,'media_assets',''),(18206,1033,'_media_assets','field_5d72c2c090478'),(18207,1033,'media_assets_archive_zip',''),(18208,1033,'_media_assets_archive_zip','field_5d768ad62c946'),(18209,1033,'author_news','2'),(18210,1033,'_author_news','field_5d3083fbbea51'),(18211,1033,'select_brand','144'),(18212,1033,'_select_brand','field_5d3084d736561'),(18213,1033,'featured_post','0'),(18214,1033,'_featured_post','field_5d30852c7c4e7'),(18215,1033,'url_video_featured_news',''),(18216,1033,'_url_video_featured_news','field_5d7ba065745f3'),(18217,1033,'legend_featured_image',''),(18218,1033,'_legend_featured_image','field_5d39e9d4ef8f8'),(18219,1033,'select_posts_related',''),(18220,1033,'_select_posts_related','field_5d3afdcff5db7'),(18221,1035,'media_assets',''),(18222,1035,'_media_assets','field_5d72c2c090478'),(18223,1035,'media_assets_archive_zip',''),(18224,1035,'_media_assets_archive_zip','field_5d768ad62c946'),(18225,1035,'author_news','2'),(18226,1035,'_author_news','field_5d3083fbbea51'),(18227,1035,'select_brand','144'),(18228,1035,'_select_brand','field_5d3084d736561'),(18229,1035,'featured_post','0'),(18230,1035,'_featured_post','field_5d30852c7c4e7'),(18231,1035,'url_video_featured_news',''),(18232,1035,'_url_video_featured_news','field_5d7ba065745f3'),(18233,1035,'legend_featured_image',''),(18234,1035,'_legend_featured_image','field_5d39e9d4ef8f8'),(18235,1035,'select_posts_related',''),(18236,1035,'_select_posts_related','field_5d3afdcff5db7'),(18237,1036,'media_assets',''),(18238,1036,'_media_assets','field_5d72c2c090478'),(18239,1036,'media_assets_archive_zip',''),(18240,1036,'_media_assets_archive_zip','field_5d768ad62c946'),(18241,1036,'author_news','2'),(18242,1036,'_author_news','field_5d3083fbbea51'),(18243,1036,'select_brand','144'),(18244,1036,'_select_brand','field_5d3084d736561'),(18245,1036,'featured_post','0'),(18246,1036,'_featured_post','field_5d30852c7c4e7'),(18247,1036,'url_video_featured_news',''),(18248,1036,'_url_video_featured_news','field_5d7ba065745f3'),(18249,1036,'legend_featured_image',''),(18250,1036,'_legend_featured_image','field_5d39e9d4ef8f8'),(18251,1036,'select_posts_related',''),(18252,1036,'_select_posts_related','field_5d3afdcff5db7'),(18253,1037,'media_assets',''),(18254,1037,'_media_assets','field_5d72c2c090478'),(18255,1037,'media_assets_archive_zip',''),(18256,1037,'_media_assets_archive_zip','field_5d768ad62c946'),(18257,1037,'author_news','2'),(18258,1037,'_author_news','field_5d3083fbbea51'),(18259,1037,'select_brand','144'),(18260,1037,'_select_brand','field_5d3084d736561'),(18261,1037,'featured_post','0'),(18262,1037,'_featured_post','field_5d30852c7c4e7'),(18263,1037,'url_video_featured_news',''),(18264,1037,'_url_video_featured_news','field_5d7ba065745f3'),(18265,1037,'legend_featured_image',''),(18266,1037,'_legend_featured_image','field_5d39e9d4ef8f8'),(18267,1037,'select_posts_related',''),(18268,1037,'_select_posts_related','field_5d3afdcff5db7'),(18269,1038,'media_assets',''),(18270,1038,'_media_assets','field_5d72c2c090478'),(18271,1038,'media_assets_archive_zip',''),(18272,1038,'_media_assets_archive_zip','field_5d768ad62c946'),(18273,1038,'author_news','2'),(18274,1038,'_author_news','field_5d3083fbbea51'),(18275,1038,'select_brand','144'),(18276,1038,'_select_brand','field_5d3084d736561'),(18277,1038,'featured_post','0'),(18278,1038,'_featured_post','field_5d30852c7c4e7'),(18279,1038,'url_video_featured_news',''),(18280,1038,'_url_video_featured_news','field_5d7ba065745f3'),(18281,1038,'legend_featured_image',''),(18282,1038,'_legend_featured_image','field_5d39e9d4ef8f8'),(18283,1038,'select_posts_related',''),(18284,1038,'_select_posts_related','field_5d3afdcff5db7'),(18285,1039,'media_assets',''),(18286,1039,'_media_assets','field_5d72c2c090478'),(18287,1039,'media_assets_archive_zip',''),(18288,1039,'_media_assets_archive_zip','field_5d768ad62c946'),(18289,1039,'author_news','2'),(18290,1039,'_author_news','field_5d3083fbbea51'),(18291,1039,'select_brand','144'),(18292,1039,'_select_brand','field_5d3084d736561'),(18293,1039,'featured_post','0'),(18294,1039,'_featured_post','field_5d30852c7c4e7'),(18295,1039,'url_video_featured_news',''),(18296,1039,'_url_video_featured_news','field_5d7ba065745f3'),(18297,1039,'legend_featured_image',''),(18298,1039,'_legend_featured_image','field_5d39e9d4ef8f8'),(18299,1039,'select_posts_related',''),(18300,1039,'_select_posts_related','field_5d3afdcff5db7'),(18301,1040,'media_assets',''),(18302,1040,'_media_assets','field_5d72c2c090478'),(18303,1040,'media_assets_archive_zip',''),(18304,1040,'_media_assets_archive_zip','field_5d768ad62c946'),(18305,1040,'author_news','2'),(18306,1040,'_author_news','field_5d3083fbbea51'),(18307,1040,'select_brand','144'),(18308,1040,'_select_brand','field_5d3084d736561'),(18309,1040,'featured_post','0'),(18310,1040,'_featured_post','field_5d30852c7c4e7'),(18311,1040,'url_video_featured_news',''),(18312,1040,'_url_video_featured_news','field_5d7ba065745f3'),(18313,1040,'legend_featured_image',''),(18314,1040,'_legend_featured_image','field_5d39e9d4ef8f8'),(18315,1040,'select_posts_related',''),(18316,1040,'_select_posts_related','field_5d3afdcff5db7'),(18317,1042,'_wp_attached_file','2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM.png'),(18318,1042,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:818;s:6:\"height\";i:1464;s:4:\"file\";s:48:\"2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-768x1375.png\";s:5:\"width\";i:768;s:6:\"height\";i:1375;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\";s:5:\"width\";i:572;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-10-07-at-3.29.22-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-10-07-at-3.29.22-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(18319,1043,'media_assets',''),(18320,1043,'_media_assets','field_5d72c2c090478'),(18321,1043,'media_assets_archive_zip',''),(18322,1043,'_media_assets_archive_zip','field_5d768ad62c946'),(18323,1043,'author_news','2'),(18324,1043,'_author_news','field_5d3083fbbea51'),(18325,1043,'select_brand','144'),(18326,1043,'_select_brand','field_5d3084d736561'),(18327,1043,'featured_post','0'),(18328,1043,'_featured_post','field_5d30852c7c4e7'),(18329,1043,'url_video_featured_news',''),(18330,1043,'_url_video_featured_news','field_5d7ba065745f3'),(18331,1043,'legend_featured_image',''),(18332,1043,'_legend_featured_image','field_5d39e9d4ef8f8'),(18333,1043,'select_posts_related',''),(18334,1043,'_select_posts_related','field_5d3afdcff5db7'),(18335,1044,'media_assets',''),(18336,1044,'_media_assets','field_5d72c2c090478'),(18337,1044,'media_assets_archive_zip',''),(18338,1044,'_media_assets_archive_zip','field_5d768ad62c946'),(18339,1044,'author_news','2'),(18340,1044,'_author_news','field_5d3083fbbea51'),(18341,1044,'select_brand','144'),(18342,1044,'_select_brand','field_5d3084d736561'),(18343,1044,'featured_post','0'),(18344,1044,'_featured_post','field_5d30852c7c4e7'),(18345,1044,'url_video_featured_news',''),(18346,1044,'_url_video_featured_news','field_5d7ba065745f3'),(18347,1044,'legend_featured_image',''),(18348,1044,'_legend_featured_image','field_5d39e9d4ef8f8'),(18349,1044,'select_posts_related',''),(18350,1044,'_select_posts_related','field_5d3afdcff5db7'),(18351,1045,'media_assets',''),(18352,1045,'_media_assets','field_5d72c2c090478'),(18353,1045,'media_assets_archive_zip',''),(18354,1045,'_media_assets_archive_zip','field_5d768ad62c946'),(18355,1045,'author_news','2'),(18356,1045,'_author_news','field_5d3083fbbea51'),(18357,1045,'select_brand','144'),(18358,1045,'_select_brand','field_5d3084d736561'),(18359,1045,'featured_post','0'),(18360,1045,'_featured_post','field_5d30852c7c4e7'),(18361,1045,'url_video_featured_news',''),(18362,1045,'_url_video_featured_news','field_5d7ba065745f3'),(18363,1045,'legend_featured_image',''),(18364,1045,'_legend_featured_image','field_5d39e9d4ef8f8'),(18365,1045,'select_posts_related',''),(18366,1045,'_select_posts_related','field_5d3afdcff5db7'),(18367,1046,'media_assets',''),(18368,1046,'_media_assets','field_5d72c2c090478'),(18369,1046,'media_assets_archive_zip',''),(18370,1046,'_media_assets_archive_zip','field_5d768ad62c946'),(18371,1046,'author_news','2'),(18372,1046,'_author_news','field_5d3083fbbea51'),(18373,1046,'select_brand','144'),(18374,1046,'_select_brand','field_5d3084d736561'),(18375,1046,'featured_post','0'),(18376,1046,'_featured_post','field_5d30852c7c4e7'),(18377,1046,'url_video_featured_news',''),(18378,1046,'_url_video_featured_news','field_5d7ba065745f3'),(18379,1046,'legend_featured_image',''),(18380,1046,'_legend_featured_image','field_5d39e9d4ef8f8'),(18381,1046,'select_posts_related',''),(18382,1046,'_select_posts_related','field_5d3afdcff5db7'),(18383,1047,'media_assets',''),(18384,1047,'_media_assets','field_5d72c2c090478'),(18385,1047,'media_assets_archive_zip',''),(18386,1047,'_media_assets_archive_zip','field_5d768ad62c946'),(18387,1047,'author_news','2'),(18388,1047,'_author_news','field_5d3083fbbea51'),(18389,1047,'select_brand','144'),(18390,1047,'_select_brand','field_5d3084d736561'),(18391,1047,'featured_post','0'),(18392,1047,'_featured_post','field_5d30852c7c4e7'),(18393,1047,'url_video_featured_news',''),(18394,1047,'_url_video_featured_news','field_5d7ba065745f3'),(18395,1047,'legend_featured_image',''),(18396,1047,'_legend_featured_image','field_5d39e9d4ef8f8'),(18397,1047,'select_posts_related',''),(18398,1047,'_select_posts_related','field_5d3afdcff5db7'),(18399,1048,'title_hero','Solving for the<br> digital future of<br> cruising'),(18400,1048,'_title_hero','field_5d2cbfcfc7b2b'),(18401,1048,'title_quote','Tech that'),(18402,1048,'_title_quote','field_5d2cc09b51dfa'),(18403,1048,'title_strong_quote','ships'),(18404,1048,'_title_strong_quote','field_5d2cc0db51dfc'),(18405,1048,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(18406,1048,'_description_quote','field_5d2cc0a851dfb'),(18407,1048,'imagem_quote','45'),(18408,1048,'_imagem_quote','field_5d2cc0ed51dfd'),(18409,1048,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(18410,1048,'_description_blockquote','field_5d2cc22c9da9a'),(18411,1048,'author_blockquote','Richard Fain, in an interview with'),(18412,1048,'_author_blockquote','field_5d2cc25a9da9b'),(18413,1048,'company','TechRepublic'),(18414,1048,'_company','field_5d2cc2769da9c'),(18415,1048,'company_blockquote','TechRepublic'),(18416,1048,'_company_blockquote','field_5d2cc2769da9c'),(18417,1048,'title_featured_i','Self service'),(18418,1048,'_title_featured_i','field_5d2cc41890f84'),(18419,1048,'description_featured_i','All you need to begin the check-in process is a smile.'),(18420,1048,'_description_featured_i','field_5d2cc42890f85'),(18421,1048,'seletc_type_link_featured_i','Link'),(18422,1048,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(18423,1048,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(18424,1048,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(18425,1048,'imagem_featured_i','361'),(18426,1048,'_imagem_featured_i','field_5d2cc71559443'),(18427,1048,'title_info_numbers','Digital by<br> the numbers'),(18428,1048,'_title_info_numbers','field_5d2cc7e517635'),(18429,1048,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(18430,1048,'_description_info_number','field_5d2cc7f817636'),(18431,1048,'app_downloads','3.5M'),(18432,1048,'_app_downloads','field_5d2cc83e17637'),(18433,1048,'active_users','1M'),(18434,1048,'_active_users','field_5d2cc84617638'),(18435,1048,'average_ios_rating','4.6'),(18436,1048,'_average_ios_rating','field_5d2cc85217639'),(18437,1048,'crew_checkins','14k'),(18438,1048,'_crew_checkins','field_5d2cc8631763a'),(18439,1048,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(18440,1048,'_title_featured_ii','field_5d2cc9741153c'),(18441,1048,'description_featured_ii',''),(18442,1048,'_description_featured_ii','field_5d2cc97e1153d'),(18443,1048,'imagem_featured_ii','45'),(18444,1048,'_imagem_featured_ii','field_5d2cc98c1153e'),(18445,1048,'seletc_type_link_featured_ii','Link'),(18446,1048,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(18447,1048,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(18448,1048,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(18449,1048,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(18450,1048,'_title_featured_iii','field_5d2ccafff022a'),(18451,1048,'description_featured_iii',''),(18452,1048,'_description_featured_iii','field_5d2ccb0cf022b'),(18453,1048,'imagem_featured_iii','862'),(18454,1048,'_imagem_featured_iii','field_5d2ccb21f022c'),(18455,1048,'seletc_type_link_featured_iii','Vídeo'),(18456,1048,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(18457,1048,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(18458,1048,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(18459,1048,'subtitle_hero','Our guests often ask…'),(18460,1048,'_subtitle_hero','field_5d5711764ff01'),(18461,1048,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18462,1048,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(18463,1048,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(18464,1048,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(18465,1048,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/post-test-title/'),(18466,1048,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(18467,1048,'hero_section_links_1_hero_section_link_title','Is there a charge to use the app?'),(18468,1048,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(18469,1048,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/faq/what-do-i-need-to-know-before-my-sailing/'),(18470,1048,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(18471,1048,'hero_section_links_2_hero_section_link_title','Can I download the app onboard?'),(18472,1048,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(18473,1048,'hero_section_links_3_hero_section_link','http://royaldigital.labcp.co/faq/start-your-vacation-sooner-with-expedited-arrival/'),(18474,1048,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(18475,1048,'hero_section_links_3_hero_section_link_title','What is Expedited Arrival?'),(18476,1048,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(18477,1048,'hero_section_links_4_hero_section_link',''),(18478,1048,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(18479,1048,'hero_section_links_4_hero_section_link_title',''),(18480,1048,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(18481,1048,'hero_section_links_5_hero_section_link',''),(18482,1048,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(18483,1048,'hero_section_links_5_hero_section_link_title',''),(18484,1048,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(18485,1048,'hero_section_links','6'),(18486,1048,'_hero_section_links','field_5d5711cf21851'),(18487,1048,'featured_faq_title','Where tech meets travel'),(18488,1048,'_featured_faq_title','field_5d57145bc652e'),(18489,1048,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(18490,1048,'_featured_faq_description','field_5d57146bc652f'),(18491,1048,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(18492,1048,'_featured_faq_link','field_5d57147ec6530'),(18493,1048,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(18494,1048,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(18495,1048,'popular_features_links_0_popular_features_link_title','Our App'),(18496,1048,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(18497,1048,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(18498,1048,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(18499,1048,'popular_features_links_1_popular_features_link_title','Check-in'),(18500,1048,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(18501,1048,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(18502,1048,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(18503,1048,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(18504,1048,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(18505,1048,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(18506,1048,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(18507,1048,'popular_features_links_3_popular_features_link_title','Guest Account'),(18508,1048,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(18509,1048,'popular_features_links','4'),(18510,1048,'_popular_features_links','field_5d5714d1c6531'),(18511,1048,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18512,1048,'_link_explore_our_fleet','field_5d77a90f09145'),(18513,1048,'image_explore_our_fleet','908'),(18514,1048,'_image_explore_our_fleet','field_5d77a96009146'),(18515,1048,'title_explore_our_fleet','Need to find your ship?'),(18516,1048,'_title_explore_our_fleet','field_5d77a97809147'),(18517,1048,'subtitle_explore_our_fleet','Explore our fleet'),(18518,1048,'_subtitle_explore_our_fleet','field_5d77a98709148'),(18523,1049,'author_news','2'),(18524,1049,'_author_news','field_5d3083fbbea51'),(18525,1049,'select_brand','143'),(18526,1049,'_select_brand','field_5d3084d736561'),(18527,1049,'featured_post','0'),(18528,1049,'_featured_post','field_5d30852c7c4e7'),(18529,1049,'legend_featured_image',''),(18530,1049,'_legend_featured_image','field_5d39e9d4ef8f8'),(18531,1049,'select_posts_related',''),(18532,1049,'_select_posts_related','field_5d3afdcff5db7'),(18533,1049,'media_assets',''),(18534,1049,'_media_assets','field_5d72c2c090478'),(18535,1049,'media_assets_archive_zip',''),(18536,1049,'_media_assets_archive_zip','field_5d768ad62c946'),(18537,1049,'url_video_featured_news',''),(18538,1049,'_url_video_featured_news','field_5d7ba065745f3'),(18543,1050,'author_news','2'),(18544,1050,'_author_news','field_5d3083fbbea51'),(18545,1050,'select_brand','144'),(18546,1050,'_select_brand','field_5d3084d736561'),(18547,1050,'featured_post','0'),(18548,1050,'_featured_post','field_5d30852c7c4e7'),(18549,1050,'legend_featured_image',''),(18550,1050,'_legend_featured_image','field_5d39e9d4ef8f8'),(18551,1050,'select_posts_related',''),(18552,1050,'_select_posts_related','field_5d3afdcff5db7'),(18553,1050,'media_assets',''),(18554,1050,'_media_assets','field_5d72c2c090478'),(18555,1050,'media_assets_archive_zip',''),(18556,1050,'_media_assets_archive_zip','field_5d768ad62c946'),(18557,1050,'url_video_featured_news',''),(18558,1050,'_url_video_featured_news','field_5d7ba065745f3'),(18563,1051,'author_news','2'),(18564,1051,'_author_news','field_5d3083fbbea51'),(18565,1051,'select_brand','144'),(18566,1051,'_select_brand','field_5d3084d736561'),(18567,1051,'featured_post','0'),(18568,1051,'_featured_post','field_5d30852c7c4e7'),(18569,1051,'legend_featured_image',''),(18570,1051,'_legend_featured_image','field_5d39e9d4ef8f8'),(18571,1051,'select_posts_related',''),(18572,1051,'_select_posts_related','field_5d3afdcff5db7'),(18573,1051,'media_assets',''),(18574,1051,'_media_assets','field_5d72c2c090478'),(18575,1051,'media_assets_archive_zip',''),(18576,1051,'_media_assets_archive_zip','field_5d768ad62c946'),(18577,1051,'url_video_featured_news',''),(18578,1051,'_url_video_featured_news','field_5d7ba065745f3'),(18579,1052,'title_hero','Solving for the<br> digital future of<br> cruising'),(18580,1052,'_title_hero','field_5d2cbfcfc7b2b'),(18581,1052,'title_quote','Tech that'),(18582,1052,'_title_quote','field_5d2cc09b51dfa'),(18583,1052,'title_strong_quote','ships'),(18584,1052,'_title_strong_quote','field_5d2cc0db51dfc'),(18585,1052,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(18586,1052,'_description_quote','field_5d2cc0a851dfb'),(18587,1052,'imagem_quote','45'),(18588,1052,'_imagem_quote','field_5d2cc0ed51dfd'),(18589,1052,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(18590,1052,'_description_blockquote','field_5d2cc22c9da9a'),(18591,1052,'author_blockquote','Richard Fain, in an interview with'),(18592,1052,'_author_blockquote','field_5d2cc25a9da9b'),(18593,1052,'company','TechRepublic'),(18594,1052,'_company','field_5d2cc2769da9c'),(18595,1052,'company_blockquote','TechRepublic'),(18596,1052,'_company_blockquote','field_5d2cc2769da9c'),(18597,1052,'title_featured_i','Self service'),(18598,1052,'_title_featured_i','field_5d2cc41890f84'),(18599,1052,'description_featured_i','All you need to begin the check-in process is a smile.'),(18600,1052,'_description_featured_i','field_5d2cc42890f85'),(18601,1052,'seletc_type_link_featured_i','Link'),(18602,1052,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(18603,1052,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(18604,1052,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(18605,1052,'imagem_featured_i','361'),(18606,1052,'_imagem_featured_i','field_5d2cc71559443'),(18607,1052,'title_info_numbers','Digital by<br> the numbers'),(18608,1052,'_title_info_numbers','field_5d2cc7e517635'),(18609,1052,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(18610,1052,'_description_info_number','field_5d2cc7f817636'),(18611,1052,'app_downloads','3.5M'),(18612,1052,'_app_downloads','field_5d2cc83e17637'),(18613,1052,'active_users','1M'),(18614,1052,'_active_users','field_5d2cc84617638'),(18615,1052,'average_ios_rating','4.6'),(18616,1052,'_average_ios_rating','field_5d2cc85217639'),(18617,1052,'crew_checkins','14k'),(18618,1052,'_crew_checkins','field_5d2cc8631763a'),(18619,1052,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(18620,1052,'_title_featured_ii','field_5d2cc9741153c'),(18621,1052,'description_featured_ii',''),(18622,1052,'_description_featured_ii','field_5d2cc97e1153d'),(18623,1052,'imagem_featured_ii','45'),(18624,1052,'_imagem_featured_ii','field_5d2cc98c1153e'),(18625,1052,'seletc_type_link_featured_ii','Link'),(18626,1052,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(18627,1052,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(18628,1052,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(18629,1052,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(18630,1052,'_title_featured_iii','field_5d2ccafff022a'),(18631,1052,'description_featured_iii',''),(18632,1052,'_description_featured_iii','field_5d2ccb0cf022b'),(18633,1052,'imagem_featured_iii','862'),(18634,1052,'_imagem_featured_iii','field_5d2ccb21f022c'),(18635,1052,'seletc_type_link_featured_iii','Vídeo'),(18636,1052,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(18637,1052,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(18638,1052,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(18639,1052,'subtitle_hero','You may be wondering…'),(18640,1052,'_subtitle_hero','field_5d5711764ff01'),(18641,1052,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18642,1052,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(18643,1052,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(18644,1052,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(18645,1052,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(18646,1052,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(18647,1052,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(18648,1052,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(18649,1052,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(18650,1052,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(18651,1052,'hero_section_links_2_hero_section_link_title','What are RCI\'s digital capabilities?'),(18652,1052,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(18653,1052,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(18654,1052,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(18655,1052,'hero_section_links_3_hero_section_link_title','How can I join RCI\'s digital t team?'),(18656,1052,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(18657,1052,'hero_section_links_4_hero_section_link',''),(18658,1052,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(18659,1052,'hero_section_links_4_hero_section_link_title',''),(18660,1052,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(18661,1052,'hero_section_links_5_hero_section_link',''),(18662,1052,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(18663,1052,'hero_section_links_5_hero_section_link_title',''),(18664,1052,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(18665,1052,'hero_section_links','6'),(18666,1052,'_hero_section_links','field_5d5711cf21851'),(18667,1052,'featured_faq_title','Where tech meets travel'),(18668,1052,'_featured_faq_title','field_5d57145bc652e'),(18669,1052,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(18670,1052,'_featured_faq_description','field_5d57146bc652f'),(18671,1052,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(18672,1052,'_featured_faq_link','field_5d57147ec6530'),(18673,1052,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(18674,1052,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(18675,1052,'popular_features_links_0_popular_features_link_title','Our App'),(18676,1052,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(18677,1052,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(18678,1052,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(18679,1052,'popular_features_links_1_popular_features_link_title','Check-in'),(18680,1052,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(18681,1052,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(18682,1052,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(18683,1052,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(18684,1052,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(18685,1052,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(18686,1052,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(18687,1052,'popular_features_links_3_popular_features_link_title','Guest Account'),(18688,1052,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(18689,1052,'popular_features_links','4'),(18690,1052,'_popular_features_links','field_5d5714d1c6531'),(18691,1052,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18692,1052,'_link_explore_our_fleet','field_5d77a90f09145'),(18693,1052,'image_explore_our_fleet','908'),(18694,1052,'_image_explore_our_fleet','field_5d77a96009146'),(18695,1052,'title_explore_our_fleet','Need to find your ship?'),(18696,1052,'_title_explore_our_fleet','field_5d77a97809147'),(18697,1052,'subtitle_explore_our_fleet','Explore our fleet'),(18698,1052,'_subtitle_explore_our_fleet','field_5d77a98709148'),(18699,1053,'title_hero','Solving for the<br> digital future of<br> cruising'),(18700,1053,'_title_hero','field_5d2cbfcfc7b2b'),(18701,1053,'title_quote','Tech that'),(18702,1053,'_title_quote','field_5d2cc09b51dfa'),(18703,1053,'title_strong_quote','ships'),(18704,1053,'_title_strong_quote','field_5d2cc0db51dfc'),(18705,1053,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(18706,1053,'_description_quote','field_5d2cc0a851dfb'),(18707,1053,'imagem_quote','45'),(18708,1053,'_imagem_quote','field_5d2cc0ed51dfd'),(18709,1053,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(18710,1053,'_description_blockquote','field_5d2cc22c9da9a'),(18711,1053,'author_blockquote','Richard Fain, in an interview with'),(18712,1053,'_author_blockquote','field_5d2cc25a9da9b'),(18713,1053,'company','TechRepublic'),(18714,1053,'_company','field_5d2cc2769da9c'),(18715,1053,'company_blockquote','TechRepublic'),(18716,1053,'_company_blockquote','field_5d2cc2769da9c'),(18717,1053,'title_featured_i','Self service'),(18718,1053,'_title_featured_i','field_5d2cc41890f84'),(18719,1053,'description_featured_i','All you need to begin the check-in process is a smile.'),(18720,1053,'_description_featured_i','field_5d2cc42890f85'),(18721,1053,'seletc_type_link_featured_i','Link'),(18722,1053,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(18723,1053,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(18724,1053,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(18725,1053,'imagem_featured_i','361'),(18726,1053,'_imagem_featured_i','field_5d2cc71559443'),(18727,1053,'title_info_numbers','Digital by<br> the numbers'),(18728,1053,'_title_info_numbers','field_5d2cc7e517635'),(18729,1053,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(18730,1053,'_description_info_number','field_5d2cc7f817636'),(18731,1053,'app_downloads','3.5M'),(18732,1053,'_app_downloads','field_5d2cc83e17637'),(18733,1053,'active_users','1M'),(18734,1053,'_active_users','field_5d2cc84617638'),(18735,1053,'average_ios_rating','4.6'),(18736,1053,'_average_ios_rating','field_5d2cc85217639'),(18737,1053,'crew_checkins','14k'),(18738,1053,'_crew_checkins','field_5d2cc8631763a'),(18739,1053,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(18740,1053,'_title_featured_ii','field_5d2cc9741153c'),(18741,1053,'description_featured_ii',''),(18742,1053,'_description_featured_ii','field_5d2cc97e1153d'),(18743,1053,'imagem_featured_ii','45'),(18744,1053,'_imagem_featured_ii','field_5d2cc98c1153e'),(18745,1053,'seletc_type_link_featured_ii','Link'),(18746,1053,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(18747,1053,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(18748,1053,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(18749,1053,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(18750,1053,'_title_featured_iii','field_5d2ccafff022a'),(18751,1053,'description_featured_iii',''),(18752,1053,'_description_featured_iii','field_5d2ccb0cf022b'),(18753,1053,'imagem_featured_iii','862'),(18754,1053,'_imagem_featured_iii','field_5d2ccb21f022c'),(18755,1053,'seletc_type_link_featured_iii','Vídeo'),(18756,1053,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(18757,1053,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(18758,1053,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(18759,1053,'subtitle_hero','You may be wondering…'),(18760,1053,'_subtitle_hero','field_5d5711764ff01'),(18761,1053,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18762,1053,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(18763,1053,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(18764,1053,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(18765,1053,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(18766,1053,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(18767,1053,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(18768,1053,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(18769,1053,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(18770,1053,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(18771,1053,'hero_section_links_2_hero_section_link_title','What are our digital capabilities?'),(18772,1053,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(18773,1053,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(18774,1053,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(18775,1053,'hero_section_links_3_hero_section_link_title','How can you join RCI\'s digital team?'),(18776,1053,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(18777,1053,'hero_section_links_4_hero_section_link',''),(18778,1053,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(18779,1053,'hero_section_links_4_hero_section_link_title',''),(18780,1053,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(18781,1053,'hero_section_links_5_hero_section_link',''),(18782,1053,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(18783,1053,'hero_section_links_5_hero_section_link_title',''),(18784,1053,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(18785,1053,'hero_section_links','6'),(18786,1053,'_hero_section_links','field_5d5711cf21851'),(18787,1053,'featured_faq_title','Where tech meets travel'),(18788,1053,'_featured_faq_title','field_5d57145bc652e'),(18789,1053,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(18790,1053,'_featured_faq_description','field_5d57146bc652f'),(18791,1053,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(18792,1053,'_featured_faq_link','field_5d57147ec6530'),(18793,1053,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(18794,1053,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(18795,1053,'popular_features_links_0_popular_features_link_title','Our App'),(18796,1053,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(18797,1053,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(18798,1053,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(18799,1053,'popular_features_links_1_popular_features_link_title','Check-in'),(18800,1053,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(18801,1053,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(18802,1053,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(18803,1053,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(18804,1053,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(18805,1053,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(18806,1053,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(18807,1053,'popular_features_links_3_popular_features_link_title','Guest Account'),(18808,1053,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(18809,1053,'popular_features_links','4'),(18810,1053,'_popular_features_links','field_5d5714d1c6531'),(18811,1053,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18812,1053,'_link_explore_our_fleet','field_5d77a90f09145'),(18813,1053,'image_explore_our_fleet','908'),(18814,1053,'_image_explore_our_fleet','field_5d77a96009146'),(18815,1053,'title_explore_our_fleet','Need to find your ship?'),(18816,1053,'_title_explore_our_fleet','field_5d77a97809147'),(18817,1053,'subtitle_explore_our_fleet','Explore our fleet'),(18818,1053,'_subtitle_explore_our_fleet','field_5d77a98709148'),(18819,1054,'title_hero','Solving for the<br> digital future of<br> cruising'),(18820,1054,'_title_hero','field_5d2cbfcfc7b2b'),(18821,1054,'title_quote','Tech that'),(18822,1054,'_title_quote','field_5d2cc09b51dfa'),(18823,1054,'title_strong_quote','ships'),(18824,1054,'_title_strong_quote','field_5d2cc0db51dfc'),(18825,1054,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(18826,1054,'_description_quote','field_5d2cc0a851dfb'),(18827,1054,'imagem_quote','45'),(18828,1054,'_imagem_quote','field_5d2cc0ed51dfd'),(18829,1054,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(18830,1054,'_description_blockquote','field_5d2cc22c9da9a'),(18831,1054,'author_blockquote','Richard Fain, in an interview with'),(18832,1054,'_author_blockquote','field_5d2cc25a9da9b'),(18833,1054,'company','TechRepublic'),(18834,1054,'_company','field_5d2cc2769da9c'),(18835,1054,'company_blockquote','TechRepublic'),(18836,1054,'_company_blockquote','field_5d2cc2769da9c'),(18837,1054,'title_featured_i','Self service'),(18838,1054,'_title_featured_i','field_5d2cc41890f84'),(18839,1054,'description_featured_i','All you need to begin the check-in process is a smile.'),(18840,1054,'_description_featured_i','field_5d2cc42890f85'),(18841,1054,'seletc_type_link_featured_i','Link'),(18842,1054,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(18843,1054,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(18844,1054,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(18845,1054,'imagem_featured_i','361'),(18846,1054,'_imagem_featured_i','field_5d2cc71559443'),(18847,1054,'title_info_numbers','Digital by<br> the numbers'),(18848,1054,'_title_info_numbers','field_5d2cc7e517635'),(18849,1054,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(18850,1054,'_description_info_number','field_5d2cc7f817636'),(18851,1054,'app_downloads','3.5M'),(18852,1054,'_app_downloads','field_5d2cc83e17637'),(18853,1054,'active_users','1M'),(18854,1054,'_active_users','field_5d2cc84617638'),(18855,1054,'average_ios_rating','4.6'),(18856,1054,'_average_ios_rating','field_5d2cc85217639'),(18857,1054,'crew_checkins','14k'),(18858,1054,'_crew_checkins','field_5d2cc8631763a'),(18859,1054,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(18860,1054,'_title_featured_ii','field_5d2cc9741153c'),(18861,1054,'description_featured_ii',''),(18862,1054,'_description_featured_ii','field_5d2cc97e1153d'),(18863,1054,'imagem_featured_ii','45'),(18864,1054,'_imagem_featured_ii','field_5d2cc98c1153e'),(18865,1054,'seletc_type_link_featured_ii','Link'),(18866,1054,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(18867,1054,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(18868,1054,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(18869,1054,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(18870,1054,'_title_featured_iii','field_5d2ccafff022a'),(18871,1054,'description_featured_iii',''),(18872,1054,'_description_featured_iii','field_5d2ccb0cf022b'),(18873,1054,'imagem_featured_iii','862'),(18874,1054,'_imagem_featured_iii','field_5d2ccb21f022c'),(18875,1054,'seletc_type_link_featured_iii','Vídeo'),(18876,1054,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(18877,1054,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(18878,1054,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(18879,1054,'subtitle_hero','You may be wondering…'),(18880,1054,'_subtitle_hero','field_5d5711764ff01'),(18881,1054,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18882,1054,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(18883,1054,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(18884,1054,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(18885,1054,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(18886,1054,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(18887,1054,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(18888,1054,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(18889,1054,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(18890,1054,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(18891,1054,'hero_section_links_2_hero_section_link_title','What are our digital capabilities?'),(18892,1054,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(18893,1054,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(18894,1054,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(18895,1054,'hero_section_links_3_hero_section_link_title','How can you join the RCL digital team?'),(18896,1054,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(18897,1054,'hero_section_links_4_hero_section_link',''),(18898,1054,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(18899,1054,'hero_section_links_4_hero_section_link_title',''),(18900,1054,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(18901,1054,'hero_section_links_5_hero_section_link',''),(18902,1054,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(18903,1054,'hero_section_links_5_hero_section_link_title',''),(18904,1054,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(18905,1054,'hero_section_links','6'),(18906,1054,'_hero_section_links','field_5d5711cf21851'),(18907,1054,'featured_faq_title','Where tech meets travel'),(18908,1054,'_featured_faq_title','field_5d57145bc652e'),(18909,1054,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(18910,1054,'_featured_faq_description','field_5d57146bc652f'),(18911,1054,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(18912,1054,'_featured_faq_link','field_5d57147ec6530'),(18913,1054,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(18914,1054,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(18915,1054,'popular_features_links_0_popular_features_link_title','Our App'),(18916,1054,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(18917,1054,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(18918,1054,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(18919,1054,'popular_features_links_1_popular_features_link_title','Check-in'),(18920,1054,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(18921,1054,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(18922,1054,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(18923,1054,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(18924,1054,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(18925,1054,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(18926,1054,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(18927,1054,'popular_features_links_3_popular_features_link_title','Guest Account'),(18928,1054,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(18929,1054,'popular_features_links','4'),(18930,1054,'_popular_features_links','field_5d5714d1c6531'),(18931,1054,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(18932,1054,'_link_explore_our_fleet','field_5d77a90f09145'),(18933,1054,'image_explore_our_fleet','908'),(18934,1054,'_image_explore_our_fleet','field_5d77a96009146'),(18935,1054,'title_explore_our_fleet','Need to find your ship?'),(18936,1054,'_title_explore_our_fleet','field_5d77a97809147'),(18937,1054,'subtitle_explore_our_fleet','Explore our fleet'),(18938,1054,'_subtitle_explore_our_fleet','field_5d77a98709148'),(18939,1056,'_edit_lock','1571762513:2'),(18940,1056,'_edit_last','2'),(18941,1056,'_thumbnail_id','994'),(18942,1056,'content_text','<p style=\"text-align: left;\"><img class=\"wp-image-1008 alignleft\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/appusage-300x225.jpg\" alt=\"\" width=\"239\" height=\"179\" />Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae iaculis lectus, eget tincidunt magna. Donec a quam luctus, facilisis augue sit amet, scelerisque ipsum. Suspendisse sit amet ex viverra, accumsan tortor quis, imperdiet turpis. Aenean in aliquet lectus. Ut commodo laoreet metus, nec consequat leo finibus a. Fusce elit ligula, consequat nec egestas nec, fermentum eu ex. Maecenas sodales, mauris eget tempus luctus, est metus lacinia enim, vel efficitur dolor mauris eu risus. Quisque pellentesque pulvinar elementum. Praesent erat lectus, vulputate quis ultricies vitae, bibendum sed augue. Fusce nec porta ipsum.</p>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae iaculis lectus, eget tincidunt magna. Donec a quam luctus, facilisis augue sit amet, scelerisque ipsum. Suspendisse sit amet ex viverra, accumsan tortor quis, imperdiet turpis. Aenean in aliquet lectus. Ut commodo laoreet metus, nec consequat leo finibus a. Fusce elit ligula, consequat nec egestas nec, fermentum eu ex. Maecenas sodales, mauris eget tempus luctus, est metus lacinia enim, vel efficitur dolor mauris eu risus. Quisque pellentesque pulvinar elementum. Praesent erat lectus, vulputate quis ultricies vitae, bibendum sed augue. Fusce nec porta ipsum.\r\n\r\n<img class=\"wp-image-1006 alignright\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-300x166.png\" alt=\"\" width=\"246\" height=\"136\" />Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae iaculis lectus, eget tincidunt magna. Donec a quam luctus, facilisis augue sit amet, scelerisque ipsum. Suspendisse sit amet ex viverra, accumsan tortor quis, imperdiet turpis. Aenean in aliquet lectus. Ut commodo laoreet metus, nec consequat leo finibus a. Fusce elit ligula, consequat nec egestas nec, fermentum eu ex. Maecenas sodales, mauris eget tempus luctus, est metus lacinia enim, vel efficitur dolor mauris eu risus. Quisque pellentesque pulvinar elementum. Praesent erat lectus, vulputate quis ultricies vitae, bibendum sed augue. Fusce nec porta ipsum.'),(18943,1056,'_content_text','field_5da4a90b176f4'),(18944,1056,'url_video_featured',''),(18945,1056,'_url_video_featured','field_5d4b2b239e718'),(18946,1056,'content_faq','1'),(18947,1056,'_content_faq','field_5d4c26b63bd77'),(18948,1056,'select_posts_related',''),(18949,1056,'_select_posts_related','field_5d4b2b239e75e'),(18950,1056,'download_app_caribbean_digital','1'),(18951,1056,'_download_app_caribbean_digital','field_5d4c27a0f5de4'),(18952,1056,'need_more_help','Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.'),(18953,1056,'_need_more_help','field_5d4c2771f5de3'),(18954,1056,'author_news','2'),(18955,1056,'_author_news','field_5d4b2aa11701b'),(18956,1056,'description_post','Praesent vitae facilisis mi. Sed sit amet libero faucibus, fringilla diam nec, placerat enim. Mauris ut mauris et risus congue tempor. Aliquam elementum sem ante, ut vulputate sem cursus eget. Duis in purus augue. '),(18957,1056,'_description_post','field_5d55bc8c63af0'),(18958,1056,'content_faq_0_image_featured_row','348'),(18959,1056,'_content_faq_0_image_featured_row','field_5d4c26e83bd78'),(18960,1056,'content_faq_0_text_row_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae iaculis lectus, eget tincidunt magna. Donec a quam luctus, facilisis augue sit amet, scelerisque ipsum. Suspendisse sit amet ex viverra, accumsan tortor quis, imperdiet turpis. Aenean in aliquet lectus. Ut commodo laoreet metus, nec consequat leo finibus a. Fusce elit ligula, consequat nec egestas nec, fermentum eu ex. Maecenas sodales, mauris eget tempus luctus, est metus lacinia enim, vel efficitur dolor mauris eu risus. Quisque pellentesque pulvinar elementum.\r\n<ul>\r\n 	<li>Praesent erat lectus</li>\r\n 	<li>Vulputate quis ultricies vitae</li>\r\n 	<li>Bibendum sed augu</li>\r\n 	<li>Fusce nec porta ipsum</li>\r\n</ul>\r\n&nbsp;\r\n\r\nUt commodo laoreet metus, nec consequat leo finibus a. Fusce elit ligula, consequat nec egestas nec, fermentum eu ex. Maecenas sodales, mauris eget tempus luctus, est metus lacinia enim, vel efficitur dolor mauris eu risus. Quisque pellentesque pulvinar elementum.'),(18961,1056,'_content_faq_0_text_row_content','field_5d4c272f3bd79'),(18962,1057,'title_hero','Welcome to the<br> digital future of<br> cruising'),(18963,1057,'_title_hero','field_5d2cbfcfc7b2b'),(18964,1057,'title_quote','Tech that'),(18965,1057,'_title_quote','field_5d2cc09b51dfa'),(18966,1057,'title_strong_quote','ships'),(18967,1057,'_title_strong_quote','field_5d2cc0db51dfc'),(18968,1057,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(18969,1057,'_description_quote','field_5d2cc0a851dfb'),(18970,1057,'imagem_quote','45'),(18971,1057,'_imagem_quote','field_5d2cc0ed51dfd'),(18972,1057,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(18973,1057,'_description_blockquote','field_5d2cc22c9da9a'),(18974,1057,'author_blockquote','Richard Fain, in an interview with'),(18975,1057,'_author_blockquote','field_5d2cc25a9da9b'),(18976,1057,'company','TechRepublic'),(18977,1057,'_company','field_5d2cc2769da9c'),(18978,1057,'company_blockquote','TechRepublic'),(18979,1057,'_company_blockquote','field_5d2cc2769da9c'),(18980,1057,'title_featured_i','Self service'),(18981,1057,'_title_featured_i','field_5d2cc41890f84'),(18982,1057,'description_featured_i','All you need to begin the check-in process is a smile.'),(18983,1057,'_description_featured_i','field_5d2cc42890f85'),(18984,1057,'seletc_type_link_featured_i','Link'),(18985,1057,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(18986,1057,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(18987,1057,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(18988,1057,'imagem_featured_i','361'),(18989,1057,'_imagem_featured_i','field_5d2cc71559443'),(18990,1057,'title_info_numbers','Digital by<br> the numbers'),(18991,1057,'_title_info_numbers','field_5d2cc7e517635'),(18992,1057,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(18993,1057,'_description_info_number','field_5d2cc7f817636'),(18994,1057,'app_downloads','3.5M'),(18995,1057,'_app_downloads','field_5d2cc83e17637'),(18996,1057,'active_users','1M'),(18997,1057,'_active_users','field_5d2cc84617638'),(18998,1057,'average_ios_rating','4.6'),(18999,1057,'_average_ios_rating','field_5d2cc85217639'),(19000,1057,'crew_checkins','14k'),(19001,1057,'_crew_checkins','field_5d2cc8631763a'),(19002,1057,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(19003,1057,'_title_featured_ii','field_5d2cc9741153c'),(19004,1057,'description_featured_ii',''),(19005,1057,'_description_featured_ii','field_5d2cc97e1153d'),(19006,1057,'imagem_featured_ii','45'),(19007,1057,'_imagem_featured_ii','field_5d2cc98c1153e'),(19008,1057,'seletc_type_link_featured_ii','Link'),(19009,1057,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(19010,1057,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(19011,1057,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(19012,1057,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(19013,1057,'_title_featured_iii','field_5d2ccafff022a'),(19014,1057,'description_featured_iii',''),(19015,1057,'_description_featured_iii','field_5d2ccb0cf022b'),(19016,1057,'imagem_featured_iii','862'),(19017,1057,'_imagem_featured_iii','field_5d2ccb21f022c'),(19018,1057,'seletc_type_link_featured_iii','Vídeo'),(19019,1057,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(19020,1057,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(19021,1057,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(19022,1057,'subtitle_hero','You may be wondering…'),(19023,1057,'_subtitle_hero','field_5d5711764ff01'),(19024,1057,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(19025,1057,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(19026,1057,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(19027,1057,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(19028,1057,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(19029,1057,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(19030,1057,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(19031,1057,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(19032,1057,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(19033,1057,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(19034,1057,'hero_section_links_2_hero_section_link_title','What are our digital capabilities?'),(19035,1057,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(19036,1057,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(19037,1057,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(19038,1057,'hero_section_links_3_hero_section_link_title','How can you join the RCL digital team?'),(19039,1057,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(19040,1057,'hero_section_links_4_hero_section_link',''),(19041,1057,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(19042,1057,'hero_section_links_4_hero_section_link_title',''),(19043,1057,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(19044,1057,'hero_section_links_5_hero_section_link',''),(19045,1057,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(19046,1057,'hero_section_links_5_hero_section_link_title',''),(19047,1057,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(19048,1057,'hero_section_links','6'),(19049,1057,'_hero_section_links','field_5d5711cf21851'),(19050,1057,'featured_faq_title','Where tech meets travel'),(19051,1057,'_featured_faq_title','field_5d57145bc652e'),(19052,1057,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(19053,1057,'_featured_faq_description','field_5d57146bc652f'),(19054,1057,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(19055,1057,'_featured_faq_link','field_5d57147ec6530'),(19056,1057,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(19057,1057,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(19058,1057,'popular_features_links_0_popular_features_link_title','Our App'),(19059,1057,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(19060,1057,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(19061,1057,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(19062,1057,'popular_features_links_1_popular_features_link_title','Check-in'),(19063,1057,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(19064,1057,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(19065,1057,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(19066,1057,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(19067,1057,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(19068,1057,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(19069,1057,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(19070,1057,'popular_features_links_3_popular_features_link_title','Guest Account'),(19071,1057,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(19072,1057,'popular_features_links','4'),(19073,1057,'_popular_features_links','field_5d5714d1c6531'),(19074,1057,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(19075,1057,'_link_explore_our_fleet','field_5d77a90f09145'),(19076,1057,'image_explore_our_fleet','908'),(19077,1057,'_image_explore_our_fleet','field_5d77a96009146'),(19078,1057,'title_explore_our_fleet','Need to find your ship?'),(19079,1057,'_title_explore_our_fleet','field_5d77a97809147'),(19080,1057,'subtitle_explore_our_fleet','Explore our fleet'),(19081,1057,'_subtitle_explore_our_fleet','field_5d77a98709148'),(19082,1059,'title_hero','Welcome to the<br> digital future of<br> cruising'),(19083,1059,'_title_hero','field_5d2cbfcfc7b2b'),(19084,1059,'title_quote','Tech that'),(19085,1059,'_title_quote','field_5d2cc09b51dfa'),(19086,1059,'title_strong_quote','ships'),(19087,1059,'_title_strong_quote','field_5d2cc0db51dfc'),(19088,1059,'description_quote','From a mobile app that simplifies vacation planning, to facial recognition that speeds up the in-terminal arrival experience, to digital signage that guides, delights and more, we constantly push ourselves each day to find more ways to improve the Guest vacation experience.'),(19089,1059,'_description_quote','field_5d2cc0a851dfb'),(19090,1059,'imagem_quote','45'),(19091,1059,'_imagem_quote','field_5d2cc0ed51dfd'),(19092,1059,'description_blockquote','I don\'t think it\'s a question of whether technology is required to stay competitive in the cruise industry. I think it\'s required to stay competitive <strong>in the world we live in.</strong>'),(19093,1059,'_description_blockquote','field_5d2cc22c9da9a'),(19094,1059,'author_blockquote','Richard Fain, in an interview with'),(19095,1059,'_author_blockquote','field_5d2cc25a9da9b'),(19096,1059,'company','TechRepublic'),(19097,1059,'_company','field_5d2cc2769da9c'),(19098,1059,'company_blockquote','TechRepublic'),(19099,1059,'_company_blockquote','field_5d2cc2769da9c'),(19100,1059,'title_featured_i','Self service'),(19101,1059,'_title_featured_i','field_5d2cc41890f84'),(19102,1059,'description_featured_i','All you need to begin the check-in process is a smile.'),(19103,1059,'_description_featured_i','field_5d2cc42890f85'),(19104,1059,'seletc_type_link_featured_i','Link'),(19105,1059,'_seletc_type_link_featured_i','field_5d2cc45b90f86'),(19106,1059,'link_news_or_link_video_featured_i','http://royaldigital.labcp.co/it-starts-with-a-selfie/'),(19107,1059,'_link_news_or_link_video_featured_i','field_5d2cc48a90f87'),(19108,1059,'imagem_featured_i','361'),(19109,1059,'_imagem_featured_i','field_5d2cc71559443'),(19110,1059,'title_info_numbers','Digital by<br> the numbers'),(19111,1059,'_title_info_numbers','field_5d2cc7e517635'),(19112,1059,'description_info_number','In less than two years, our digital products are making waves across brands, demographics and pushing the envelope across industries.'),(19113,1059,'_description_info_number','field_5d2cc7f817636'),(19114,1059,'app_downloads','3.5M'),(19115,1059,'_app_downloads','field_5d2cc83e17637'),(19116,1059,'active_users','1M'),(19117,1059,'_active_users','field_5d2cc84617638'),(19118,1059,'average_ios_rating','4.6'),(19119,1059,'_average_ios_rating','field_5d2cc85217639'),(19120,1059,'crew_checkins','52k'),(19121,1059,'_crew_checkins','field_5d2cc8631763a'),(19122,1059,'title_featured_ii','All app-board! Our app continues to add amazing features you probably haven\'t yet imagined.'),(19123,1059,'_title_featured_ii','field_5d2cc9741153c'),(19124,1059,'description_featured_ii',''),(19125,1059,'_description_featured_ii','field_5d2cc97e1153d'),(19126,1059,'imagem_featured_ii','45'),(19127,1059,'_imagem_featured_ii','field_5d2cc98c1153e'),(19128,1059,'seletc_type_link_featured_ii','Link'),(19129,1059,'_seletc_type_link_featured_ii','field_5d2cc9941153f'),(19130,1059,'link_news_or_link_video_featured_ii','http://royaldigital.labcp.co/help-faqs/'),(19131,1059,'_link_news_or_link_video_featured_ii','field_5d2cc99e11540'),(19132,1059,'title_featured_iii','Want to start your vacation sooner? All it takes is a few taps.'),(19133,1059,'_title_featured_iii','field_5d2ccafff022a'),(19134,1059,'description_featured_iii',''),(19135,1059,'_description_featured_iii','field_5d2ccb0cf022b'),(19136,1059,'imagem_featured_iii','862'),(19137,1059,'_imagem_featured_iii','field_5d2ccb21f022c'),(19138,1059,'seletc_type_link_featured_iii','Vídeo'),(19139,1059,'_seletc_type_link_featured_iii','field_5d2ccb30f022d'),(19140,1059,'link_news_or_link_video_featured_iii','https://vimeo.com/344894438'),(19141,1059,'_link_news_or_link_video_featured_iii','field_5d2ccb3df022e'),(19142,1059,'subtitle_hero','You may be wondering…'),(19143,1059,'_subtitle_hero','field_5d5711764ff01'),(19144,1059,'hero_section_links_0_hero_section_link','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(19145,1059,'_hero_section_links_0_hero_section_link','field_5d571219e550b'),(19146,1059,'hero_section_links_0_hero_section_link_title','Will the app be available on my ship?'),(19147,1059,'_hero_section_links_0_hero_section_link_title','field_5d571227e550c'),(19148,1059,'hero_section_links_1_hero_section_link','http://royaldigital.labcp.co/blog-press/'),(19149,1059,'_hero_section_links_1_hero_section_link','field_5d571219e550b'),(19150,1059,'hero_section_links_1_hero_section_link_title','What\'s the latest RCL Digital news?'),(19151,1059,'_hero_section_links_1_hero_section_link_title','field_5d571227e550c'),(19152,1059,'hero_section_links_2_hero_section_link','http://royaldigital.labcp.co/help-faqs/'),(19153,1059,'_hero_section_links_2_hero_section_link','field_5d571219e550b'),(19154,1059,'hero_section_links_2_hero_section_link_title','What are our digital capabilities?'),(19155,1059,'_hero_section_links_2_hero_section_link_title','field_5d571227e550c'),(19156,1059,'hero_section_links_3_hero_section_link','https://jobs.rclcareers.com/en-US/search?keywords=digital&location='),(19157,1059,'_hero_section_links_3_hero_section_link','field_5d571219e550b'),(19158,1059,'hero_section_links_3_hero_section_link_title','How can you join the RCL digital team?'),(19159,1059,'_hero_section_links_3_hero_section_link_title','field_5d571227e550c'),(19160,1059,'hero_section_links_4_hero_section_link',''),(19161,1059,'_hero_section_links_4_hero_section_link','field_5d571219e550b'),(19162,1059,'hero_section_links_4_hero_section_link_title',''),(19163,1059,'_hero_section_links_4_hero_section_link_title','field_5d571227e550c'),(19164,1059,'hero_section_links_5_hero_section_link',''),(19165,1059,'_hero_section_links_5_hero_section_link','field_5d571219e550b'),(19166,1059,'hero_section_links_5_hero_section_link_title',''),(19167,1059,'_hero_section_links_5_hero_section_link_title','field_5d571227e550c'),(19168,1059,'hero_section_links','6'),(19169,1059,'_hero_section_links','field_5d5711cf21851'),(19170,1059,'featured_faq_title','Where tech meets travel'),(19171,1059,'_featured_faq_title','field_5d57145bc652e'),(19172,1059,'featured_faq_description','We tirelesly reimagine our guest’s experience by remaining curious and never shying away from applying technology in unexpected ways.'),(19173,1059,'_featured_faq_description','field_5d57146bc652f'),(19174,1059,'featured_faq_link','http://royaldigital.labcp.co/help-faqs/'),(19175,1059,'_featured_faq_link','field_5d57147ec6530'),(19176,1059,'popular_features_links_0_popular_features_link','http://royaldigital.labcp.co/post-test-title/'),(19177,1059,'_popular_features_links_0_popular_features_link','field_5d5714fbc6532'),(19178,1059,'popular_features_links_0_popular_features_link_title','Our App'),(19179,1059,'_popular_features_links_0_popular_features_link_title','field_5d571514c6533'),(19180,1059,'popular_features_links_1_popular_features_link','http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/'),(19181,1059,'_popular_features_links_1_popular_features_link','field_5d5714fbc6532'),(19182,1059,'popular_features_links_1_popular_features_link_title','Check-in'),(19183,1059,'_popular_features_links_1_popular_features_link_title','field_5d571514c6533'),(19184,1059,'popular_features_links_2_popular_features_link','http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/'),(19185,1059,'_popular_features_links_2_popular_features_link','field_5d5714fbc6532'),(19186,1059,'popular_features_links_2_popular_features_link_title','Onboard<br>Wi-Fi'),(19187,1059,'_popular_features_links_2_popular_features_link_title','field_5d571514c6533'),(19188,1059,'popular_features_links_3_popular_features_link','http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/'),(19189,1059,'_popular_features_links_3_popular_features_link','field_5d5714fbc6532'),(19190,1059,'popular_features_links_3_popular_features_link_title','Guest Account'),(19191,1059,'_popular_features_links_3_popular_features_link_title','field_5d571514c6533'),(19192,1059,'popular_features_links','4'),(19193,1059,'_popular_features_links','field_5d5714d1c6531'),(19194,1059,'link_explore_our_fleet','http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/'),(19195,1059,'_link_explore_our_fleet','field_5d77a90f09145'),(19196,1059,'image_explore_our_fleet','908'),(19197,1059,'_image_explore_our_fleet','field_5d77a96009146'),(19198,1059,'title_explore_our_fleet','Need to find your ship?'),(19199,1059,'_title_explore_our_fleet','field_5d77a97809147'),(19200,1059,'subtitle_explore_our_fleet','Explore our fleet'),(19201,1059,'_subtitle_explore_our_fleet','field_5d77a98709148'),(19202,1062,'media_assets',''),(19203,1062,'_media_assets','field_5d72c2c090478'),(19204,1062,'media_assets_archive_zip',''),(19205,1062,'_media_assets_archive_zip','field_5d768ad62c946'),(19206,1062,'author_news','2'),(19207,1062,'_author_news','field_5d3083fbbea51'),(19208,1062,'select_brand','144'),(19209,1062,'_select_brand','field_5d3084d736561'),(19210,1062,'featured_post','0'),(19211,1062,'_featured_post','field_5d30852c7c4e7'),(19212,1062,'url_video_featured_news',''),(19213,1062,'_url_video_featured_news','field_5d7ba065745f3'),(19214,1062,'legend_featured_image',''),(19215,1062,'_legend_featured_image','field_5d39e9d4ef8f8'),(19216,1062,'select_posts_related',''),(19217,1062,'_select_posts_related','field_5d3afdcff5db7'),(19218,1063,'media_assets',''),(19219,1063,'_media_assets','field_5d72c2c090478'),(19220,1063,'media_assets_archive_zip',''),(19221,1063,'_media_assets_archive_zip','field_5d768ad62c946'),(19222,1063,'author_news','2'),(19223,1063,'_author_news','field_5d3083fbbea51'),(19224,1063,'select_brand','144'),(19225,1063,'_select_brand','field_5d3084d736561'),(19226,1063,'featured_post','0'),(19227,1063,'_featured_post','field_5d30852c7c4e7'),(19228,1063,'url_video_featured_news',''),(19229,1063,'_url_video_featured_news','field_5d7ba065745f3'),(19230,1063,'legend_featured_image',''),(19231,1063,'_legend_featured_image','field_5d39e9d4ef8f8'),(19232,1063,'select_posts_related',''),(19233,1063,'_select_posts_related','field_5d3afdcff5db7'),(19234,1064,'media_assets',''),(19235,1064,'_media_assets','field_5d72c2c090478'),(19236,1064,'media_assets_archive_zip',''),(19237,1064,'_media_assets_archive_zip','field_5d768ad62c946'),(19238,1064,'author_news','2'),(19239,1064,'_author_news','field_5d3083fbbea51'),(19240,1064,'select_brand','144'),(19241,1064,'_select_brand','field_5d3084d736561'),(19242,1064,'featured_post','0'),(19243,1064,'_featured_post','field_5d30852c7c4e7'),(19244,1064,'url_video_featured_news',''),(19245,1064,'_url_video_featured_news','field_5d7ba065745f3'),(19246,1064,'legend_featured_image',''),(19247,1064,'_legend_featured_image','field_5d39e9d4ef8f8'),(19248,1064,'select_posts_related',''),(19249,1064,'_select_posts_related','field_5d3afdcff5db7'),(19250,1065,'media_assets',''),(19251,1065,'_media_assets','field_5d72c2c090478'),(19252,1065,'media_assets_archive_zip',''),(19253,1065,'_media_assets_archive_zip','field_5d768ad62c946'),(19254,1065,'author_news','2'),(19255,1065,'_author_news','field_5d3083fbbea51'),(19256,1065,'select_brand','144'),(19257,1065,'_select_brand','field_5d3084d736561'),(19258,1065,'featured_post','0'),(19259,1065,'_featured_post','field_5d30852c7c4e7'),(19260,1065,'url_video_featured_news',''),(19261,1065,'_url_video_featured_news','field_5d7ba065745f3'),(19262,1065,'legend_featured_image',''),(19263,1065,'_legend_featured_image','field_5d39e9d4ef8f8'),(19264,1065,'select_posts_related',''),(19265,1065,'_select_posts_related','field_5d3afdcff5db7'),(19266,1066,'media_assets',''),(19267,1066,'_media_assets','field_5d72c2c090478'),(19268,1066,'media_assets_archive_zip',''),(19269,1066,'_media_assets_archive_zip','field_5d768ad62c946'),(19270,1066,'author_news','2'),(19271,1066,'_author_news','field_5d3083fbbea51'),(19272,1066,'select_brand','144'),(19273,1066,'_select_brand','field_5d3084d736561'),(19274,1066,'featured_post','0'),(19275,1066,'_featured_post','field_5d30852c7c4e7'),(19276,1066,'url_video_featured_news',''),(19277,1066,'_url_video_featured_news','field_5d7ba065745f3'),(19278,1066,'legend_featured_image',''),(19279,1066,'_legend_featured_image','field_5d39e9d4ef8f8'),(19280,1066,'select_posts_related',''),(19281,1066,'_select_posts_related','field_5d3afdcff5db7'),(19282,1067,'_wp_attached_file','2019/11/FPO.jpg'),(19283,1067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2019/11/FPO.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"FPO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"FPO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"FPO-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:16:\"FPO-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:15:\"FPO-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:16:\"FPO-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:15:\"FPO-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:15:\"FPO-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:16:\"FPO-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:15:\"FPO-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:15:\"FPO-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:16:\"FPO-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:15:\"FPO-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19284,1068,'media_assets',''),(19285,1068,'_media_assets','field_5d72c2c090478'),(19286,1068,'media_assets_archive_zip',''),(19287,1068,'_media_assets_archive_zip','field_5d768ad62c946'),(19288,1068,'author_news','2'),(19289,1068,'_author_news','field_5d3083fbbea51'),(19290,1068,'select_brand','144'),(19291,1068,'_select_brand','field_5d3084d736561'),(19292,1068,'featured_post','0'),(19293,1068,'_featured_post','field_5d30852c7c4e7'),(19294,1068,'url_video_featured_news',''),(19295,1068,'_url_video_featured_news','field_5d7ba065745f3'),(19296,1068,'legend_featured_image',''),(19297,1068,'_legend_featured_image','field_5d39e9d4ef8f8'),(19298,1068,'select_posts_related',''),(19299,1068,'_select_posts_related','field_5d3afdcff5db7'),(19300,1069,'_wp_attached_file','2019/11/FPO-1.jpg'),(19301,1069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2019/11/FPO-1.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"FPO-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"FPO-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"FPO-1-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:18:\"FPO-1-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:17:\"FPO-1-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:18:\"FPO-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:17:\"FPO-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:17:\"FPO-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:18:\"FPO-1-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:17:\"FPO-1-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:17:\"FPO-1-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:18:\"FPO-1-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:17:\"FPO-1-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19302,1070,'media_assets',''),(19303,1070,'_media_assets','field_5d72c2c090478'),(19304,1070,'media_assets_archive_zip',''),(19305,1070,'_media_assets_archive_zip','field_5d768ad62c946'),(19306,1070,'author_news','2'),(19307,1070,'_author_news','field_5d3083fbbea51'),(19308,1070,'select_brand','144'),(19309,1070,'_select_brand','field_5d3084d736561'),(19310,1070,'featured_post','0'),(19311,1070,'_featured_post','field_5d30852c7c4e7'),(19312,1070,'url_video_featured_news',''),(19313,1070,'_url_video_featured_news','field_5d7ba065745f3'),(19314,1070,'legend_featured_image',''),(19315,1070,'_legend_featured_image','field_5d39e9d4ef8f8'),(19316,1070,'select_posts_related',''),(19317,1070,'_select_posts_related','field_5d3afdcff5db7'),(19318,1071,'media_assets',''),(19319,1071,'_media_assets','field_5d72c2c090478'),(19320,1071,'media_assets_archive_zip',''),(19321,1071,'_media_assets_archive_zip','field_5d768ad62c946'),(19322,1071,'author_news','2'),(19323,1071,'_author_news','field_5d3083fbbea51'),(19324,1071,'select_brand','144'),(19325,1071,'_select_brand','field_5d3084d736561'),(19326,1071,'featured_post','0'),(19327,1071,'_featured_post','field_5d30852c7c4e7'),(19328,1071,'url_video_featured_news',''),(19329,1071,'_url_video_featured_news','field_5d7ba065745f3'),(19330,1071,'legend_featured_image',''),(19331,1071,'_legend_featured_image','field_5d39e9d4ef8f8'),(19332,1071,'select_posts_related',''),(19333,1071,'_select_posts_related','field_5d3afdcff5db7'),(19334,1072,'media_assets',''),(19335,1072,'_media_assets','field_5d72c2c090478'),(19336,1072,'media_assets_archive_zip',''),(19337,1072,'_media_assets_archive_zip','field_5d768ad62c946'),(19338,1072,'author_news','2'),(19339,1072,'_author_news','field_5d3083fbbea51'),(19340,1072,'select_brand','144'),(19341,1072,'_select_brand','field_5d3084d736561'),(19342,1072,'featured_post','0'),(19343,1072,'_featured_post','field_5d30852c7c4e7'),(19344,1072,'url_video_featured_news',''),(19345,1072,'_url_video_featured_news','field_5d7ba065745f3'),(19346,1072,'legend_featured_image',''),(19347,1072,'_legend_featured_image','field_5d39e9d4ef8f8'),(19348,1072,'select_posts_related',''),(19349,1072,'_select_posts_related','field_5d3afdcff5db7'),(19350,1073,'_wp_attached_file','2019/11/FPO-Copy.jpg'),(19351,1073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:20:\"2019/11/FPO-Copy.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"FPO-Copy-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"FPO-Copy-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"FPO-Copy-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"FPO-Copy-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"FPO-Copy-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"FPO-Copy-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19352,1074,'media_assets',''),(19353,1074,'_media_assets','field_5d72c2c090478'),(19354,1074,'media_assets_archive_zip',''),(19355,1074,'_media_assets_archive_zip','field_5d768ad62c946'),(19356,1074,'author_news','2'),(19357,1074,'_author_news','field_5d3083fbbea51'),(19358,1074,'select_brand','144'),(19359,1074,'_select_brand','field_5d3084d736561'),(19360,1074,'featured_post','0'),(19361,1074,'_featured_post','field_5d30852c7c4e7'),(19362,1074,'url_video_featured_news',''),(19363,1074,'_url_video_featured_news','field_5d7ba065745f3'),(19364,1074,'legend_featured_image',''),(19365,1074,'_legend_featured_image','field_5d39e9d4ef8f8'),(19366,1074,'select_posts_related',''),(19367,1074,'_select_posts_related','field_5d3afdcff5db7'),(19368,1075,'media_assets',''),(19369,1075,'_media_assets','field_5d72c2c090478'),(19370,1075,'media_assets_archive_zip',''),(19371,1075,'_media_assets_archive_zip','field_5d768ad62c946'),(19372,1075,'author_news','2'),(19373,1075,'_author_news','field_5d3083fbbea51'),(19374,1075,'select_brand','144'),(19375,1075,'_select_brand','field_5d3084d736561'),(19376,1075,'featured_post','0'),(19377,1075,'_featured_post','field_5d30852c7c4e7'),(19378,1075,'url_video_featured_news',''),(19379,1075,'_url_video_featured_news','field_5d7ba065745f3'),(19380,1075,'legend_featured_image',''),(19381,1075,'_legend_featured_image','field_5d39e9d4ef8f8'),(19382,1075,'select_posts_related',''),(19383,1075,'_select_posts_related','field_5d3afdcff5db7'),(19384,1076,'media_assets',''),(19385,1076,'_media_assets','field_5d72c2c090478'),(19386,1076,'media_assets_archive_zip',''),(19387,1076,'_media_assets_archive_zip','field_5d768ad62c946'),(19388,1076,'author_news','2'),(19389,1076,'_author_news','field_5d3083fbbea51'),(19390,1076,'select_brand','144'),(19391,1076,'_select_brand','field_5d3084d736561'),(19392,1076,'featured_post','0'),(19393,1076,'_featured_post','field_5d30852c7c4e7'),(19394,1076,'url_video_featured_news',''),(19395,1076,'_url_video_featured_news','field_5d7ba065745f3'),(19396,1076,'legend_featured_image',''),(19397,1076,'_legend_featured_image','field_5d39e9d4ef8f8'),(19398,1076,'select_posts_related',''),(19399,1076,'_select_posts_related','field_5d3afdcff5db7'),(19400,1077,'media_assets',''),(19401,1077,'_media_assets','field_5d72c2c090478'),(19402,1077,'media_assets_archive_zip',''),(19403,1077,'_media_assets_archive_zip','field_5d768ad62c946'),(19404,1077,'author_news','2'),(19405,1077,'_author_news','field_5d3083fbbea51'),(19406,1077,'select_brand','144'),(19407,1077,'_select_brand','field_5d3084d736561'),(19408,1077,'featured_post','0'),(19409,1077,'_featured_post','field_5d30852c7c4e7'),(19410,1077,'url_video_featured_news',''),(19411,1077,'_url_video_featured_news','field_5d7ba065745f3'),(19412,1077,'legend_featured_image',''),(19413,1077,'_legend_featured_image','field_5d39e9d4ef8f8'),(19414,1077,'select_posts_related',''),(19415,1077,'_select_posts_related','field_5d3afdcff5db7'),(19416,1078,'media_assets',''),(19417,1078,'_media_assets','field_5d72c2c090478'),(19418,1078,'media_assets_archive_zip',''),(19419,1078,'_media_assets_archive_zip','field_5d768ad62c946'),(19420,1078,'author_news','2'),(19421,1078,'_author_news','field_5d3083fbbea51'),(19422,1078,'select_brand','144'),(19423,1078,'_select_brand','field_5d3084d736561'),(19424,1078,'featured_post','0'),(19425,1078,'_featured_post','field_5d30852c7c4e7'),(19426,1078,'url_video_featured_news',''),(19427,1078,'_url_video_featured_news','field_5d7ba065745f3'),(19428,1078,'legend_featured_image',''),(19429,1078,'_legend_featured_image','field_5d39e9d4ef8f8'),(19430,1078,'select_posts_related',''),(19431,1078,'_select_posts_related','field_5d3afdcff5db7'),(19432,1079,'media_assets',''),(19433,1079,'_media_assets','field_5d72c2c090478'),(19434,1079,'media_assets_archive_zip',''),(19435,1079,'_media_assets_archive_zip','field_5d768ad62c946'),(19436,1079,'author_news','2'),(19437,1079,'_author_news','field_5d3083fbbea51'),(19438,1079,'select_brand','144'),(19439,1079,'_select_brand','field_5d3084d736561'),(19440,1079,'featured_post','0'),(19441,1079,'_featured_post','field_5d30852c7c4e7'),(19442,1079,'url_video_featured_news',''),(19443,1079,'_url_video_featured_news','field_5d7ba065745f3'),(19444,1079,'legend_featured_image',''),(19445,1079,'_legend_featured_image','field_5d39e9d4ef8f8'),(19446,1079,'select_posts_related',''),(19447,1079,'_select_posts_related','field_5d3afdcff5db7'),(19448,1080,'media_assets',''),(19449,1080,'_media_assets','field_5d72c2c090478'),(19450,1080,'media_assets_archive_zip',''),(19451,1080,'_media_assets_archive_zip','field_5d768ad62c946'),(19452,1080,'author_news','2'),(19453,1080,'_author_news','field_5d3083fbbea51'),(19454,1080,'select_brand','144'),(19455,1080,'_select_brand','field_5d3084d736561'),(19456,1080,'featured_post','0'),(19457,1080,'_featured_post','field_5d30852c7c4e7'),(19458,1080,'url_video_featured_news',''),(19459,1080,'_url_video_featured_news','field_5d7ba065745f3'),(19460,1080,'legend_featured_image',''),(19461,1080,'_legend_featured_image','field_5d39e9d4ef8f8'),(19462,1080,'select_posts_related',''),(19463,1080,'_select_posts_related','field_5d3afdcff5db7'),(19464,1081,'media_assets',''),(19465,1081,'_media_assets','field_5d72c2c090478'),(19466,1081,'media_assets_archive_zip',''),(19467,1081,'_media_assets_archive_zip','field_5d768ad62c946'),(19468,1081,'author_news','2'),(19469,1081,'_author_news','field_5d3083fbbea51'),(19470,1081,'select_brand','144'),(19471,1081,'_select_brand','field_5d3084d736561'),(19472,1081,'featured_post','0'),(19473,1081,'_featured_post','field_5d30852c7c4e7'),(19474,1081,'url_video_featured_news',''),(19475,1081,'_url_video_featured_news','field_5d7ba065745f3'),(19476,1081,'legend_featured_image',''),(19477,1081,'_legend_featured_image','field_5d39e9d4ef8f8'),(19478,1081,'select_posts_related',''),(19479,1081,'_select_posts_related','field_5d3afdcff5db7'),(19480,1082,'media_assets',''),(19481,1082,'_media_assets','field_5d72c2c090478'),(19482,1082,'media_assets_archive_zip',''),(19483,1082,'_media_assets_archive_zip','field_5d768ad62c946'),(19484,1082,'author_news','2'),(19485,1082,'_author_news','field_5d3083fbbea51'),(19486,1082,'select_brand','144'),(19487,1082,'_select_brand','field_5d3084d736561'),(19488,1082,'featured_post','0'),(19489,1082,'_featured_post','field_5d30852c7c4e7'),(19490,1082,'url_video_featured_news',''),(19491,1082,'_url_video_featured_news','field_5d7ba065745f3'),(19492,1082,'legend_featured_image',''),(19493,1082,'_legend_featured_image','field_5d39e9d4ef8f8'),(19494,1082,'select_posts_related',''),(19495,1082,'_select_posts_related','field_5d3afdcff5db7'),(19496,1083,'media_assets',''),(19497,1083,'_media_assets','field_5d72c2c090478'),(19498,1083,'media_assets_archive_zip',''),(19499,1083,'_media_assets_archive_zip','field_5d768ad62c946'),(19500,1083,'author_news','2'),(19501,1083,'_author_news','field_5d3083fbbea51'),(19502,1083,'select_brand','144'),(19503,1083,'_select_brand','field_5d3084d736561'),(19504,1083,'featured_post','0'),(19505,1083,'_featured_post','field_5d30852c7c4e7'),(19506,1083,'url_video_featured_news',''),(19507,1083,'_url_video_featured_news','field_5d7ba065745f3'),(19508,1083,'legend_featured_image',''),(19509,1083,'_legend_featured_image','field_5d39e9d4ef8f8'),(19510,1083,'select_posts_related',''),(19511,1083,'_select_posts_related','field_5d3afdcff5db7'),(19512,1084,'media_assets',''),(19513,1084,'_media_assets','field_5d72c2c090478'),(19514,1084,'media_assets_archive_zip',''),(19515,1084,'_media_assets_archive_zip','field_5d768ad62c946'),(19516,1084,'author_news','2'),(19517,1084,'_author_news','field_5d3083fbbea51'),(19518,1084,'select_brand','144'),(19519,1084,'_select_brand','field_5d3084d736561'),(19520,1084,'featured_post','0'),(19521,1084,'_featured_post','field_5d30852c7c4e7'),(19522,1084,'url_video_featured_news',''),(19523,1084,'_url_video_featured_news','field_5d7ba065745f3'),(19524,1084,'legend_featured_image',''),(19525,1084,'_legend_featured_image','field_5d39e9d4ef8f8'),(19526,1084,'select_posts_related',''),(19527,1084,'_select_posts_related','field_5d3afdcff5db7'),(19528,1085,'media_assets',''),(19529,1085,'_media_assets','field_5d72c2c090478'),(19530,1085,'media_assets_archive_zip',''),(19531,1085,'_media_assets_archive_zip','field_5d768ad62c946'),(19532,1085,'author_news','2'),(19533,1085,'_author_news','field_5d3083fbbea51'),(19534,1085,'select_brand','144'),(19535,1085,'_select_brand','field_5d3084d736561'),(19536,1085,'featured_post','0'),(19537,1085,'_featured_post','field_5d30852c7c4e7'),(19538,1085,'url_video_featured_news',''),(19539,1085,'_url_video_featured_news','field_5d7ba065745f3'),(19540,1085,'legend_featured_image',''),(19541,1085,'_legend_featured_image','field_5d39e9d4ef8f8'),(19542,1085,'select_posts_related',''),(19543,1085,'_select_posts_related','field_5d3afdcff5db7'),(19544,1086,'media_assets',''),(19545,1086,'_media_assets','field_5d72c2c090478'),(19546,1086,'media_assets_archive_zip',''),(19547,1086,'_media_assets_archive_zip','field_5d768ad62c946'),(19548,1086,'author_news','2'),(19549,1086,'_author_news','field_5d3083fbbea51'),(19550,1086,'select_brand','144'),(19551,1086,'_select_brand','field_5d3084d736561'),(19552,1086,'featured_post','0'),(19553,1086,'_featured_post','field_5d30852c7c4e7'),(19554,1086,'url_video_featured_news',''),(19555,1086,'_url_video_featured_news','field_5d7ba065745f3'),(19556,1086,'legend_featured_image',''),(19557,1086,'_legend_featured_image','field_5d39e9d4ef8f8'),(19558,1086,'select_posts_related',''),(19559,1086,'_select_posts_related','field_5d3afdcff5db7'),(19560,1087,'media_assets',''),(19561,1087,'_media_assets','field_5d72c2c090478'),(19562,1087,'media_assets_archive_zip',''),(19563,1087,'_media_assets_archive_zip','field_5d768ad62c946'),(19564,1087,'author_news','2'),(19565,1087,'_author_news','field_5d3083fbbea51'),(19566,1087,'select_brand','144'),(19567,1087,'_select_brand','field_5d3084d736561'),(19568,1087,'featured_post','0'),(19569,1087,'_featured_post','field_5d30852c7c4e7'),(19570,1087,'url_video_featured_news',''),(19571,1087,'_url_video_featured_news','field_5d7ba065745f3'),(19572,1087,'legend_featured_image',''),(19573,1087,'_legend_featured_image','field_5d39e9d4ef8f8'),(19574,1087,'select_posts_related',''),(19575,1087,'_select_posts_related','field_5d3afdcff5db7'),(19576,1088,'media_assets',''),(19577,1088,'_media_assets','field_5d72c2c090478'),(19578,1088,'media_assets_archive_zip',''),(19579,1088,'_media_assets_archive_zip','field_5d768ad62c946'),(19580,1088,'author_news','2'),(19581,1088,'_author_news','field_5d3083fbbea51'),(19582,1088,'select_brand','144'),(19583,1088,'_select_brand','field_5d3084d736561'),(19584,1088,'featured_post','0'),(19585,1088,'_featured_post','field_5d30852c7c4e7'),(19586,1088,'url_video_featured_news',''),(19587,1088,'_url_video_featured_news','field_5d7ba065745f3'),(19588,1088,'legend_featured_image',''),(19589,1088,'_legend_featured_image','field_5d39e9d4ef8f8'),(19590,1088,'select_posts_related',''),(19591,1088,'_select_posts_related','field_5d3afdcff5db7'),(19592,1089,'media_assets',''),(19593,1089,'_media_assets','field_5d72c2c090478'),(19594,1089,'media_assets_archive_zip',''),(19595,1089,'_media_assets_archive_zip','field_5d768ad62c946'),(19596,1089,'author_news','2'),(19597,1089,'_author_news','field_5d3083fbbea51'),(19598,1089,'select_brand','144'),(19599,1089,'_select_brand','field_5d3084d736561'),(19600,1089,'featured_post','0'),(19601,1089,'_featured_post','field_5d30852c7c4e7'),(19602,1089,'url_video_featured_news',''),(19603,1089,'_url_video_featured_news','field_5d7ba065745f3'),(19604,1089,'legend_featured_image',''),(19605,1089,'_legend_featured_image','field_5d39e9d4ef8f8'),(19606,1089,'select_posts_related',''),(19607,1089,'_select_posts_related','field_5d3afdcff5db7'),(19608,1090,'media_assets',''),(19609,1090,'_media_assets','field_5d72c2c090478'),(19610,1090,'media_assets_archive_zip',''),(19611,1090,'_media_assets_archive_zip','field_5d768ad62c946'),(19612,1090,'author_news','2'),(19613,1090,'_author_news','field_5d3083fbbea51'),(19614,1090,'select_brand','144'),(19615,1090,'_select_brand','field_5d3084d736561'),(19616,1090,'featured_post','0'),(19617,1090,'_featured_post','field_5d30852c7c4e7'),(19618,1090,'url_video_featured_news',''),(19619,1090,'_url_video_featured_news','field_5d7ba065745f3'),(19620,1090,'legend_featured_image',''),(19621,1090,'_legend_featured_image','field_5d39e9d4ef8f8'),(19622,1090,'select_posts_related',''),(19623,1090,'_select_posts_related','field_5d3afdcff5db7'),(19624,1091,'media_assets',''),(19625,1091,'_media_assets','field_5d72c2c090478'),(19626,1091,'media_assets_archive_zip',''),(19627,1091,'_media_assets_archive_zip','field_5d768ad62c946'),(19628,1091,'author_news','2'),(19629,1091,'_author_news','field_5d3083fbbea51'),(19630,1091,'select_brand','144'),(19631,1091,'_select_brand','field_5d3084d736561'),(19632,1091,'featured_post','0'),(19633,1091,'_featured_post','field_5d30852c7c4e7'),(19634,1091,'url_video_featured_news',''),(19635,1091,'_url_video_featured_news','field_5d7ba065745f3'),(19636,1091,'legend_featured_image',''),(19637,1091,'_legend_featured_image','field_5d39e9d4ef8f8'),(19638,1091,'select_posts_related',''),(19639,1091,'_select_posts_related','field_5d3afdcff5db7'),(19640,1092,'media_assets',''),(19641,1092,'_media_assets','field_5d72c2c090478'),(19642,1092,'media_assets_archive_zip',''),(19643,1092,'_media_assets_archive_zip','field_5d768ad62c946'),(19644,1092,'author_news','2'),(19645,1092,'_author_news','field_5d3083fbbea51'),(19646,1092,'select_brand','144'),(19647,1092,'_select_brand','field_5d3084d736561'),(19648,1092,'featured_post','0'),(19649,1092,'_featured_post','field_5d30852c7c4e7'),(19650,1092,'url_video_featured_news',''),(19651,1092,'_url_video_featured_news','field_5d7ba065745f3'),(19652,1092,'legend_featured_image',''),(19653,1092,'_legend_featured_image','field_5d39e9d4ef8f8'),(19654,1092,'select_posts_related',''),(19655,1092,'_select_posts_related','field_5d3afdcff5db7'),(19656,1093,'media_assets',''),(19657,1093,'_media_assets','field_5d72c2c090478'),(19658,1093,'media_assets_archive_zip',''),(19659,1093,'_media_assets_archive_zip','field_5d768ad62c946'),(19660,1093,'author_news','2'),(19661,1093,'_author_news','field_5d3083fbbea51'),(19662,1093,'select_brand','144'),(19663,1093,'_select_brand','field_5d3084d736561'),(19664,1093,'featured_post','0'),(19665,1093,'_featured_post','field_5d30852c7c4e7'),(19666,1093,'url_video_featured_news',''),(19667,1093,'_url_video_featured_news','field_5d7ba065745f3'),(19668,1093,'legend_featured_image',''),(19669,1093,'_legend_featured_image','field_5d39e9d4ef8f8'),(19670,1093,'select_posts_related',''),(19671,1093,'_select_posts_related','field_5d3afdcff5db7'),(19672,1094,'media_assets',''),(19673,1094,'_media_assets','field_5d72c2c090478'),(19674,1094,'media_assets_archive_zip',''),(19675,1094,'_media_assets_archive_zip','field_5d768ad62c946'),(19676,1094,'author_news','2'),(19677,1094,'_author_news','field_5d3083fbbea51'),(19678,1094,'select_brand','144'),(19679,1094,'_select_brand','field_5d3084d736561'),(19680,1094,'featured_post','0'),(19681,1094,'_featured_post','field_5d30852c7c4e7'),(19682,1094,'url_video_featured_news',''),(19683,1094,'_url_video_featured_news','field_5d7ba065745f3'),(19684,1094,'legend_featured_image',''),(19685,1094,'_legend_featured_image','field_5d39e9d4ef8f8'),(19686,1094,'select_posts_related',''),(19687,1094,'_select_posts_related','field_5d3afdcff5db7'),(19688,1095,'media_assets',''),(19689,1095,'_media_assets','field_5d72c2c090478'),(19690,1095,'media_assets_archive_zip',''),(19691,1095,'_media_assets_archive_zip','field_5d768ad62c946'),(19692,1095,'author_news','2'),(19693,1095,'_author_news','field_5d3083fbbea51'),(19694,1095,'select_brand','144'),(19695,1095,'_select_brand','field_5d3084d736561'),(19696,1095,'featured_post','0'),(19697,1095,'_featured_post','field_5d30852c7c4e7'),(19698,1095,'url_video_featured_news',''),(19699,1095,'_url_video_featured_news','field_5d7ba065745f3'),(19700,1095,'legend_featured_image',''),(19701,1095,'_legend_featured_image','field_5d39e9d4ef8f8'),(19702,1095,'select_posts_related',''),(19703,1095,'_select_posts_related','field_5d3afdcff5db7'),(19704,1096,'media_assets',''),(19705,1096,'_media_assets','field_5d72c2c090478'),(19706,1096,'media_assets_archive_zip',''),(19707,1096,'_media_assets_archive_zip','field_5d768ad62c946'),(19708,1096,'author_news','2'),(19709,1096,'_author_news','field_5d3083fbbea51'),(19710,1096,'select_brand','144'),(19711,1096,'_select_brand','field_5d3084d736561'),(19712,1096,'featured_post','0'),(19713,1096,'_featured_post','field_5d30852c7c4e7'),(19714,1096,'url_video_featured_news',''),(19715,1096,'_url_video_featured_news','field_5d7ba065745f3'),(19716,1096,'legend_featured_image',''),(19717,1096,'_legend_featured_image','field_5d39e9d4ef8f8'),(19718,1096,'select_posts_related',''),(19719,1096,'_select_posts_related','field_5d3afdcff5db7'),(19720,1097,'media_assets',''),(19721,1097,'_media_assets','field_5d72c2c090478'),(19722,1097,'media_assets_archive_zip',''),(19723,1097,'_media_assets_archive_zip','field_5d768ad62c946'),(19724,1097,'author_news','2'),(19725,1097,'_author_news','field_5d3083fbbea51'),(19726,1097,'select_brand','144'),(19727,1097,'_select_brand','field_5d3084d736561'),(19728,1097,'featured_post','0'),(19729,1097,'_featured_post','field_5d30852c7c4e7'),(19730,1097,'url_video_featured_news',''),(19731,1097,'_url_video_featured_news','field_5d7ba065745f3'),(19732,1097,'legend_featured_image',''),(19733,1097,'_legend_featured_image','field_5d39e9d4ef8f8'),(19734,1097,'select_posts_related',''),(19735,1097,'_select_posts_related','field_5d3afdcff5db7'),(19736,1098,'media_assets',''),(19737,1098,'_media_assets','field_5d72c2c090478'),(19738,1098,'media_assets_archive_zip',''),(19739,1098,'_media_assets_archive_zip','field_5d768ad62c946'),(19740,1098,'author_news','2'),(19741,1098,'_author_news','field_5d3083fbbea51'),(19742,1098,'select_brand','144'),(19743,1098,'_select_brand','field_5d3084d736561'),(19744,1098,'featured_post','0'),(19745,1098,'_featured_post','field_5d30852c7c4e7'),(19746,1098,'url_video_featured_news',''),(19747,1098,'_url_video_featured_news','field_5d7ba065745f3'),(19748,1098,'legend_featured_image',''),(19749,1098,'_legend_featured_image','field_5d39e9d4ef8f8'),(19750,1098,'select_posts_related',''),(19751,1098,'_select_posts_related','field_5d3afdcff5db7'),(19752,1099,'media_assets',''),(19753,1099,'_media_assets','field_5d72c2c090478'),(19754,1099,'media_assets_archive_zip',''),(19755,1099,'_media_assets_archive_zip','field_5d768ad62c946'),(19756,1099,'author_news','2'),(19757,1099,'_author_news','field_5d3083fbbea51'),(19758,1099,'select_brand','144'),(19759,1099,'_select_brand','field_5d3084d736561'),(19760,1099,'featured_post','0'),(19761,1099,'_featured_post','field_5d30852c7c4e7'),(19762,1099,'url_video_featured_news',''),(19763,1099,'_url_video_featured_news','field_5d7ba065745f3'),(19764,1099,'legend_featured_image',''),(19765,1099,'_legend_featured_image','field_5d39e9d4ef8f8'),(19766,1099,'select_posts_related',''),(19767,1099,'_select_posts_related','field_5d3afdcff5db7'),(19768,1100,'media_assets',''),(19769,1100,'_media_assets','field_5d72c2c090478'),(19770,1100,'media_assets_archive_zip',''),(19771,1100,'_media_assets_archive_zip','field_5d768ad62c946'),(19772,1100,'author_news','2'),(19773,1100,'_author_news','field_5d3083fbbea51'),(19774,1100,'select_brand','144'),(19775,1100,'_select_brand','field_5d3084d736561'),(19776,1100,'featured_post','0'),(19777,1100,'_featured_post','field_5d30852c7c4e7'),(19778,1100,'url_video_featured_news',''),(19779,1100,'_url_video_featured_news','field_5d7ba065745f3'),(19780,1100,'legend_featured_image',''),(19781,1100,'_legend_featured_image','field_5d39e9d4ef8f8'),(19782,1100,'select_posts_related',''),(19783,1100,'_select_posts_related','field_5d3afdcff5db7'),(19784,1101,'media_assets',''),(19785,1101,'_media_assets','field_5d72c2c090478'),(19786,1101,'media_assets_archive_zip',''),(19787,1101,'_media_assets_archive_zip','field_5d768ad62c946'),(19788,1101,'author_news','2'),(19789,1101,'_author_news','field_5d3083fbbea51'),(19790,1101,'select_brand','144'),(19791,1101,'_select_brand','field_5d3084d736561'),(19792,1101,'featured_post','0'),(19793,1101,'_featured_post','field_5d30852c7c4e7'),(19794,1101,'url_video_featured_news',''),(19795,1101,'_url_video_featured_news','field_5d7ba065745f3'),(19796,1101,'legend_featured_image',''),(19797,1101,'_legend_featured_image','field_5d39e9d4ef8f8'),(19798,1101,'select_posts_related',''),(19799,1101,'_select_posts_related','field_5d3afdcff5db7'),(19800,1102,'media_assets',''),(19801,1102,'_media_assets','field_5d72c2c090478'),(19802,1102,'media_assets_archive_zip',''),(19803,1102,'_media_assets_archive_zip','field_5d768ad62c946'),(19804,1102,'author_news','2'),(19805,1102,'_author_news','field_5d3083fbbea51'),(19806,1102,'select_brand','144'),(19807,1102,'_select_brand','field_5d3084d736561'),(19808,1102,'featured_post','0'),(19809,1102,'_featured_post','field_5d30852c7c4e7'),(19810,1102,'url_video_featured_news',''),(19811,1102,'_url_video_featured_news','field_5d7ba065745f3'),(19812,1102,'legend_featured_image',''),(19813,1102,'_legend_featured_image','field_5d39e9d4ef8f8'),(19814,1102,'select_posts_related',''),(19815,1102,'_select_posts_related','field_5d3afdcff5db7'),(19816,1103,'media_assets',''),(19817,1103,'_media_assets','field_5d72c2c090478'),(19818,1103,'media_assets_archive_zip',''),(19819,1103,'_media_assets_archive_zip','field_5d768ad62c946'),(19820,1103,'author_news','2'),(19821,1103,'_author_news','field_5d3083fbbea51'),(19822,1103,'select_brand','144'),(19823,1103,'_select_brand','field_5d3084d736561'),(19824,1103,'featured_post','0'),(19825,1103,'_featured_post','field_5d30852c7c4e7'),(19826,1103,'url_video_featured_news',''),(19827,1103,'_url_video_featured_news','field_5d7ba065745f3'),(19828,1103,'legend_featured_image',''),(19829,1103,'_legend_featured_image','field_5d39e9d4ef8f8'),(19830,1103,'select_posts_related',''),(19831,1103,'_select_posts_related','field_5d3afdcff5db7'),(19832,1104,'media_assets',''),(19833,1104,'_media_assets','field_5d72c2c090478'),(19834,1104,'media_assets_archive_zip',''),(19835,1104,'_media_assets_archive_zip','field_5d768ad62c946'),(19836,1104,'author_news','2'),(19837,1104,'_author_news','field_5d3083fbbea51'),(19838,1104,'select_brand','144'),(19839,1104,'_select_brand','field_5d3084d736561'),(19840,1104,'featured_post','0'),(19841,1104,'_featured_post','field_5d30852c7c4e7'),(19842,1104,'url_video_featured_news',''),(19843,1104,'_url_video_featured_news','field_5d7ba065745f3'),(19844,1104,'legend_featured_image',''),(19845,1104,'_legend_featured_image','field_5d39e9d4ef8f8'),(19846,1104,'select_posts_related',''),(19847,1104,'_select_posts_related','field_5d3afdcff5db7'),(19848,1105,'_wp_attached_file','2019/11/FPO-Copy-2.jpg'),(19849,1105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2019/11/FPO-Copy-2.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-300x104.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-768x267.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1024x356.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1000x811.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-500x284.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1600x900.jpg\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-820x640.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:23:\"FPO-Copy-2-1500x940.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:22:\"FPO-Copy-2-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19850,1106,'media_assets',''),(19851,1106,'_media_assets','field_5d72c2c090478'),(19852,1106,'media_assets_archive_zip',''),(19853,1106,'_media_assets_archive_zip','field_5d768ad62c946'),(19854,1106,'author_news','2'),(19855,1106,'_author_news','field_5d3083fbbea51'),(19856,1106,'select_brand','144'),(19857,1106,'_select_brand','field_5d3084d736561'),(19858,1106,'featured_post','0'),(19859,1106,'_featured_post','field_5d30852c7c4e7'),(19860,1106,'url_video_featured_news',''),(19861,1106,'_url_video_featured_news','field_5d7ba065745f3'),(19862,1106,'legend_featured_image',''),(19863,1106,'_legend_featured_image','field_5d39e9d4ef8f8'),(19864,1106,'select_posts_related',''),(19865,1106,'_select_posts_related','field_5d3afdcff5db7'),(19866,1108,'media_assets',''),(19867,1108,'_media_assets','field_5d72c2c090478'),(19868,1108,'media_assets_archive_zip',''),(19869,1108,'_media_assets_archive_zip','field_5d768ad62c946'),(19870,1108,'author_news','2'),(19871,1108,'_author_news','field_5d3083fbbea51'),(19872,1108,'select_brand','144'),(19873,1108,'_select_brand','field_5d3084d736561'),(19874,1108,'featured_post','0'),(19875,1108,'_featured_post','field_5d30852c7c4e7'),(19876,1108,'url_video_featured_news',''),(19877,1108,'_url_video_featured_news','field_5d7ba065745f3'),(19878,1108,'legend_featured_image',''),(19879,1108,'_legend_featured_image','field_5d39e9d4ef8f8'),(19880,1108,'select_posts_related',''),(19881,1108,'_select_posts_related','field_5d3afdcff5db7'),(19882,1110,'media_assets',''),(19883,1110,'_media_assets','field_5d72c2c090478'),(19884,1110,'media_assets_archive_zip',''),(19885,1110,'_media_assets_archive_zip','field_5d768ad62c946'),(19886,1110,'author_news','2'),(19887,1110,'_author_news','field_5d3083fbbea51'),(19888,1110,'select_brand','144'),(19889,1110,'_select_brand','field_5d3084d736561'),(19890,1110,'featured_post','0'),(19891,1110,'_featured_post','field_5d30852c7c4e7'),(19892,1110,'url_video_featured_news',''),(19893,1110,'_url_video_featured_news','field_5d7ba065745f3'),(19894,1110,'legend_featured_image',''),(19895,1110,'_legend_featured_image','field_5d39e9d4ef8f8'),(19896,1110,'select_posts_related',''),(19897,1110,'_select_posts_related','field_5d3afdcff5db7'),(19898,1111,'media_assets',''),(19899,1111,'_media_assets','field_5d72c2c090478'),(19900,1111,'media_assets_archive_zip',''),(19901,1111,'_media_assets_archive_zip','field_5d768ad62c946'),(19902,1111,'author_news','2'),(19903,1111,'_author_news','field_5d3083fbbea51'),(19904,1111,'select_brand','144'),(19905,1111,'_select_brand','field_5d3084d736561'),(19906,1111,'featured_post','0'),(19907,1111,'_featured_post','field_5d30852c7c4e7'),(19908,1111,'url_video_featured_news',''),(19909,1111,'_url_video_featured_news','field_5d7ba065745f3'),(19910,1111,'legend_featured_image',''),(19911,1111,'_legend_featured_image','field_5d39e9d4ef8f8'),(19912,1111,'select_posts_related',''),(19913,1111,'_select_posts_related','field_5d3afdcff5db7'),(19914,1112,'media_assets',''),(19915,1112,'_media_assets','field_5d72c2c090478'),(19916,1112,'media_assets_archive_zip',''),(19917,1112,'_media_assets_archive_zip','field_5d768ad62c946'),(19918,1112,'author_news','2'),(19919,1112,'_author_news','field_5d3083fbbea51'),(19920,1112,'select_brand','144'),(19921,1112,'_select_brand','field_5d3084d736561'),(19922,1112,'featured_post','0'),(19923,1112,'_featured_post','field_5d30852c7c4e7'),(19924,1112,'url_video_featured_news',''),(19925,1112,'_url_video_featured_news','field_5d7ba065745f3'),(19926,1112,'legend_featured_image',''),(19927,1112,'_legend_featured_image','field_5d39e9d4ef8f8'),(19928,1112,'select_posts_related',''),(19929,1112,'_select_posts_related','field_5d3afdcff5db7'),(19930,1113,'media_assets',''),(19931,1113,'_media_assets','field_5d72c2c090478'),(19932,1113,'media_assets_archive_zip',''),(19933,1113,'_media_assets_archive_zip','field_5d768ad62c946'),(19934,1113,'author_news','2'),(19935,1113,'_author_news','field_5d3083fbbea51'),(19936,1113,'select_brand','144'),(19937,1113,'_select_brand','field_5d3084d736561'),(19938,1113,'featured_post','0'),(19939,1113,'_featured_post','field_5d30852c7c4e7'),(19940,1113,'url_video_featured_news',''),(19941,1113,'_url_video_featured_news','field_5d7ba065745f3'),(19942,1113,'legend_featured_image',''),(19943,1113,'_legend_featured_image','field_5d39e9d4ef8f8'),(19944,1113,'select_posts_related',''),(19945,1113,'_select_posts_related','field_5d3afdcff5db7'),(19946,1114,'media_assets',''),(19947,1114,'_media_assets','field_5d72c2c090478'),(19948,1114,'media_assets_archive_zip',''),(19949,1114,'_media_assets_archive_zip','field_5d768ad62c946'),(19950,1114,'author_news','2'),(19951,1114,'_author_news','field_5d3083fbbea51'),(19952,1114,'select_brand','144'),(19953,1114,'_select_brand','field_5d3084d736561'),(19954,1114,'featured_post','0'),(19955,1114,'_featured_post','field_5d30852c7c4e7'),(19956,1114,'url_video_featured_news',''),(19957,1114,'_url_video_featured_news','field_5d7ba065745f3'),(19958,1114,'legend_featured_image',''),(19959,1114,'_legend_featured_image','field_5d39e9d4ef8f8'),(19960,1114,'select_posts_related',''),(19961,1114,'_select_posts_related','field_5d3afdcff5db7'),(19962,1115,'media_assets',''),(19963,1115,'_media_assets','field_5d72c2c090478'),(19964,1115,'media_assets_archive_zip',''),(19965,1115,'_media_assets_archive_zip','field_5d768ad62c946'),(19966,1115,'author_news','2'),(19967,1115,'_author_news','field_5d3083fbbea51'),(19968,1115,'select_brand','144'),(19969,1115,'_select_brand','field_5d3084d736561'),(19970,1115,'featured_post','0'),(19971,1115,'_featured_post','field_5d30852c7c4e7'),(19972,1115,'url_video_featured_news',''),(19973,1115,'_url_video_featured_news','field_5d7ba065745f3'),(19974,1115,'legend_featured_image',''),(19975,1115,'_legend_featured_image','field_5d39e9d4ef8f8'),(19976,1115,'select_posts_related',''),(19977,1115,'_select_posts_related','field_5d3afdcff5db7'),(19978,1116,'media_assets',''),(19979,1116,'_media_assets','field_5d72c2c090478'),(19980,1116,'media_assets_archive_zip',''),(19981,1116,'_media_assets_archive_zip','field_5d768ad62c946'),(19982,1116,'author_news','2'),(19983,1116,'_author_news','field_5d3083fbbea51'),(19984,1116,'select_brand','144'),(19985,1116,'_select_brand','field_5d3084d736561'),(19986,1116,'featured_post','0'),(19987,1116,'_featured_post','field_5d30852c7c4e7'),(19988,1116,'url_video_featured_news',''),(19989,1116,'_url_video_featured_news','field_5d7ba065745f3'),(19990,1116,'legend_featured_image',''),(19991,1116,'_legend_featured_image','field_5d39e9d4ef8f8'),(19992,1116,'select_posts_related',''),(19993,1116,'_select_posts_related','field_5d3afdcff5db7'),(19994,1117,'_wp_attached_file','2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM.png'),(19995,1117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:796;s:4:\"file\";s:48:\"2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-768x509.png\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1024x679.png\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2019-11-06-at-2.23.24-PM-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2019-11-06-at-2.23.24-PM-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(19996,1119,'media_assets',''),(19997,1119,'_media_assets','field_5d72c2c090478'),(19998,1119,'media_assets_archive_zip',''),(19999,1119,'_media_assets_archive_zip','field_5d768ad62c946'),(20000,1119,'author_news','2'),(20001,1119,'_author_news','field_5d3083fbbea51'),(20002,1119,'select_brand','144'),(20003,1119,'_select_brand','field_5d3084d736561'),(20004,1119,'featured_post','0'),(20005,1119,'_featured_post','field_5d30852c7c4e7'),(20006,1119,'url_video_featured_news',''),(20007,1119,'_url_video_featured_news','field_5d7ba065745f3'),(20008,1119,'legend_featured_image',''),(20009,1119,'_legend_featured_image','field_5d39e9d4ef8f8'),(20010,1119,'select_posts_related',''),(20011,1119,'_select_posts_related','field_5d3afdcff5db7'),(20012,1120,'media_assets',''),(20013,1120,'_media_assets','field_5d72c2c090478'),(20014,1120,'media_assets_archive_zip',''),(20015,1120,'_media_assets_archive_zip','field_5d768ad62c946'),(20016,1120,'author_news','2'),(20017,1120,'_author_news','field_5d3083fbbea51'),(20018,1120,'select_brand','144'),(20019,1120,'_select_brand','field_5d3084d736561'),(20020,1120,'featured_post','0'),(20021,1120,'_featured_post','field_5d30852c7c4e7'),(20022,1120,'url_video_featured_news',''),(20023,1120,'_url_video_featured_news','field_5d7ba065745f3'),(20024,1120,'legend_featured_image',''),(20025,1120,'_legend_featured_image','field_5d39e9d4ef8f8'),(20026,1120,'select_posts_related',''),(20027,1120,'_select_posts_related','field_5d3afdcff5db7'),(20028,1121,'media_assets',''),(20029,1121,'_media_assets','field_5d72c2c090478'),(20030,1121,'media_assets_archive_zip',''),(20031,1121,'_media_assets_archive_zip','field_5d768ad62c946'),(20032,1121,'author_news','2'),(20033,1121,'_author_news','field_5d3083fbbea51'),(20034,1121,'select_brand','144'),(20035,1121,'_select_brand','field_5d3084d736561'),(20036,1121,'featured_post','0'),(20037,1121,'_featured_post','field_5d30852c7c4e7'),(20038,1121,'url_video_featured_news',''),(20039,1121,'_url_video_featured_news','field_5d7ba065745f3'),(20040,1121,'legend_featured_image',''),(20041,1121,'_legend_featured_image','field_5d39e9d4ef8f8'),(20042,1121,'select_posts_related',''),(20043,1121,'_select_posts_related','field_5d3afdcff5db7'),(20044,1122,'media_assets',''),(20045,1122,'_media_assets','field_5d72c2c090478'),(20046,1122,'media_assets_archive_zip',''),(20047,1122,'_media_assets_archive_zip','field_5d768ad62c946'),(20048,1122,'author_news','2'),(20049,1122,'_author_news','field_5d3083fbbea51'),(20050,1122,'select_brand','144'),(20051,1122,'_select_brand','field_5d3084d736561'),(20052,1122,'featured_post','0'),(20053,1122,'_featured_post','field_5d30852c7c4e7'),(20054,1122,'url_video_featured_news',''),(20055,1122,'_url_video_featured_news','field_5d7ba065745f3'),(20056,1122,'legend_featured_image',''),(20057,1122,'_legend_featured_image','field_5d39e9d4ef8f8'),(20058,1122,'select_posts_related',''),(20059,1122,'_select_posts_related','field_5d3afdcff5db7'),(20060,1123,'_wp_attached_file','2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png'),(20061,1123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:59:\"2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-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:60:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:60:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:59:\"RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(20062,1124,'_wp_attached_file','2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png'),(20063,1124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:68:\"2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-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:69:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:69:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:68:\"RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(20064,1125,'media_assets',''),(20065,1125,'_media_assets','field_5d72c2c090478'),(20066,1125,'media_assets_archive_zip',''),(20067,1125,'_media_assets_archive_zip','field_5d768ad62c946'),(20068,1125,'author_news','2'),(20069,1125,'_author_news','field_5d3083fbbea51'),(20070,1125,'select_brand','144'),(20071,1125,'_select_brand','field_5d3084d736561'),(20072,1125,'featured_post','0'),(20073,1125,'_featured_post','field_5d30852c7c4e7'),(20074,1125,'url_video_featured_news',''),(20075,1125,'_url_video_featured_news','field_5d7ba065745f3'),(20076,1125,'legend_featured_image',''),(20077,1125,'_legend_featured_image','field_5d39e9d4ef8f8'),(20078,1125,'select_posts_related',''),(20079,1125,'_select_posts_related','field_5d3afdcff5db7'),(20080,1126,'media_assets',''),(20081,1126,'_media_assets','field_5d72c2c090478'),(20082,1126,'media_assets_archive_zip',''),(20083,1126,'_media_assets_archive_zip','field_5d768ad62c946'),(20084,1126,'author_news','2'),(20085,1126,'_author_news','field_5d3083fbbea51'),(20086,1126,'select_brand','144'),(20087,1126,'_select_brand','field_5d3084d736561'),(20088,1126,'featured_post','0'),(20089,1126,'_featured_post','field_5d30852c7c4e7'),(20090,1126,'url_video_featured_news',''),(20091,1126,'_url_video_featured_news','field_5d7ba065745f3'),(20092,1126,'legend_featured_image',''),(20093,1126,'_legend_featured_image','field_5d39e9d4ef8f8'),(20094,1126,'select_posts_related',''),(20095,1126,'_select_posts_related','field_5d3afdcff5db7'),(20096,1127,'media_assets',''),(20097,1127,'_media_assets','field_5d72c2c090478'),(20098,1127,'media_assets_archive_zip',''),(20099,1127,'_media_assets_archive_zip','field_5d768ad62c946'),(20100,1127,'author_news','4'),(20101,1127,'_author_news','field_5d3083fbbea51'),(20102,1127,'select_brand','144'),(20103,1127,'_select_brand','field_5d3084d736561'),(20104,1127,'featured_post','0'),(20105,1127,'_featured_post','field_5d30852c7c4e7'),(20106,1127,'url_video_featured_news',''),(20107,1127,'_url_video_featured_news','field_5d7ba065745f3'),(20108,1127,'legend_featured_image',''),(20109,1127,'_legend_featured_image','field_5d39e9d4ef8f8'),(20110,1127,'select_posts_related',''),(20111,1127,'_select_posts_related','field_5d3afdcff5db7'),(20112,1128,'media_assets',''),(20113,1128,'_media_assets','field_5d72c2c090478'),(20114,1128,'media_assets_archive_zip',''),(20115,1128,'_media_assets_archive_zip','field_5d768ad62c946'),(20116,1128,'author_news','4'),(20117,1128,'_author_news','field_5d3083fbbea51'),(20118,1128,'select_brand','144'),(20119,1128,'_select_brand','field_5d3084d736561'),(20120,1128,'featured_post','0'),(20121,1128,'_featured_post','field_5d30852c7c4e7'),(20122,1128,'url_video_featured_news',''),(20123,1128,'_url_video_featured_news','field_5d7ba065745f3'),(20124,1128,'legend_featured_image',''),(20125,1128,'_legend_featured_image','field_5d39e9d4ef8f8'),(20126,1128,'select_posts_related',''),(20127,1128,'_select_posts_related','field_5d3afdcff5db7'),(20128,1129,'media_assets',''),(20129,1129,'_media_assets','field_5d72c2c090478'),(20130,1129,'media_assets_archive_zip',''),(20131,1129,'_media_assets_archive_zip','field_5d768ad62c946'),(20132,1129,'author_news','4'),(20133,1129,'_author_news','field_5d3083fbbea51'),(20134,1129,'select_brand','144'),(20135,1129,'_select_brand','field_5d3084d736561'),(20136,1129,'featured_post','0'),(20137,1129,'_featured_post','field_5d30852c7c4e7'),(20138,1129,'url_video_featured_news',''),(20139,1129,'_url_video_featured_news','field_5d7ba065745f3'),(20140,1129,'legend_featured_image',''),(20141,1129,'_legend_featured_image','field_5d39e9d4ef8f8'),(20142,1129,'select_posts_related',''),(20143,1129,'_select_posts_related','field_5d3afdcff5db7'),(20148,1130,'_edit_lock','1573588358:2'),(20149,1130,'_edit_last','2'),(20150,1130,'media_assets',''),(20151,1130,'_media_assets','field_5d72c2c090478'),(20152,1130,'media_assets_archive_zip',''),(20153,1130,'_media_assets_archive_zip','field_5d768ad62c946'),(20154,1130,'author_news',''),(20155,1130,'_author_news','field_5d3083fbbea51'),(20156,1130,'select_brand',''),(20157,1130,'_select_brand','field_5d3084d736561'),(20158,1130,'featured_post','0'),(20159,1130,'_featured_post','field_5d30852c7c4e7'),(20160,1130,'url_video_featured_news',''),(20161,1130,'_url_video_featured_news','field_5d7ba065745f3'),(20162,1130,'legend_featured_image',''),(20163,1130,'_legend_featured_image','field_5d39e9d4ef8f8'),(20164,1130,'select_posts_related',''),(20165,1130,'_select_posts_related','field_5d3afdcff5db7'),(20166,1131,'media_assets',''),(20167,1131,'_media_assets','field_5d72c2c090478'),(20168,1131,'media_assets_archive_zip',''),(20169,1131,'_media_assets_archive_zip','field_5d768ad62c946'),(20170,1131,'author_news',''),(20171,1131,'_author_news','field_5d3083fbbea51'),(20172,1131,'select_brand',''),(20173,1131,'_select_brand','field_5d3084d736561'),(20174,1131,'featured_post','0'),(20175,1131,'_featured_post','field_5d30852c7c4e7'),(20176,1131,'url_video_featured_news',''),(20177,1131,'_url_video_featured_news','field_5d7ba065745f3'),(20178,1131,'legend_featured_image',''),(20179,1131,'_legend_featured_image','field_5d39e9d4ef8f8'),(20180,1131,'select_posts_related',''),(20181,1131,'_select_posts_related','field_5d3afdcff5db7'),(20184,1136,'_edit_lock','1592961178:9'),(20185,1137,'_wp_attached_file','2020/06/mobile-1.png'),(20186,1137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:657;s:6:\"height\";i:436;s:4:\"file\";s:20:\"2020/06/mobile-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mobile-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mobile-1-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"mobile-1-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:21:\"mobile-1-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:20:\"mobile-1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:21:\"mobile-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:20:\"mobile-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:20:\"mobile-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:21:\"mobile-1-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:20:\"mobile-1-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:20:\"mobile-1-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:21:\"mobile-1-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:20:\"mobile-1-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(20187,1142,'_wp_attached_file','2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4'),(20188,1142,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:28437970;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:23;s:16:\"length_formatted\";s:4:\"0:23\";s:5:\"width\";i:1920;s:6:\"height\";i:1048;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1574720892;}'),(20189,1144,'_edit_lock','1597073973:13'),(20190,1144,'_edit_last','9'),(20191,1144,'media_assets','2'),(20192,1144,'_media_assets','field_5d72c2c090478'),(20193,1144,'media_assets_archive_zip',''),(20194,1144,'_media_assets_archive_zip','field_5d768ad62c946'),(20195,1144,'author_news',''),(20196,1144,'_author_news','field_5d3083fbbea51'),(20197,1144,'select_brand',''),(20198,1144,'_select_brand','field_5d3084d736561'),(20199,1144,'featured_post','0'),(20200,1144,'_featured_post','field_5d30852c7c4e7'),(20201,1144,'url_video_featured_news',''),(20202,1144,'_url_video_featured_news','field_5d7ba065745f3'),(20203,1144,'legend_featured_image',''),(20204,1144,'_legend_featured_image','field_5d39e9d4ef8f8'),(20205,1144,'select_posts_related',''),(20206,1144,'_select_posts_related','field_5d3afdcff5db7'),(20207,1145,'media_assets',''),(20208,1145,'_media_assets','field_5d72c2c090478'),(20209,1145,'media_assets_archive_zip',''),(20210,1145,'_media_assets_archive_zip','field_5d768ad62c946'),(20211,1145,'author_news',''),(20212,1145,'_author_news','field_5d3083fbbea51'),(20213,1145,'select_brand',''),(20214,1145,'_select_brand','field_5d3084d736561'),(20215,1145,'featured_post','0'),(20216,1145,'_featured_post','field_5d30852c7c4e7'),(20217,1145,'url_video_featured_news',''),(20218,1145,'_url_video_featured_news','field_5d7ba065745f3'),(20219,1145,'legend_featured_image',''),(20220,1145,'_legend_featured_image','field_5d39e9d4ef8f8'),(20221,1145,'select_posts_related',''),(20222,1145,'_select_posts_related','field_5d3afdcff5db7'),(20223,1148,'media_assets',''),(20224,1148,'_media_assets','field_5d72c2c090478'),(20225,1148,'media_assets_archive_zip',''),(20226,1148,'_media_assets_archive_zip','field_5d768ad62c946'),(20227,1148,'author_news',''),(20228,1148,'_author_news','field_5d3083fbbea51'),(20229,1148,'select_brand',''),(20230,1148,'_select_brand','field_5d3084d736561'),(20231,1148,'featured_post','0'),(20232,1148,'_featured_post','field_5d30852c7c4e7'),(20233,1148,'url_video_featured_news',''),(20234,1148,'_url_video_featured_news','field_5d7ba065745f3'),(20235,1148,'legend_featured_image',''),(20236,1148,'_legend_featured_image','field_5d39e9d4ef8f8'),(20237,1148,'select_posts_related',''),(20238,1148,'_select_posts_related','field_5d3afdcff5db7'),(20239,1151,'media_assets',''),(20240,1151,'_media_assets','field_5d72c2c090478'),(20241,1151,'media_assets_archive_zip',''),(20242,1151,'_media_assets_archive_zip','field_5d768ad62c946'),(20243,1151,'author_news',''),(20244,1151,'_author_news','field_5d3083fbbea51'),(20245,1151,'select_brand',''),(20246,1151,'_select_brand','field_5d3084d736561'),(20247,1151,'featured_post','0'),(20248,1151,'_featured_post','field_5d30852c7c4e7'),(20249,1151,'url_video_featured_news',''),(20250,1151,'_url_video_featured_news','field_5d7ba065745f3'),(20251,1151,'legend_featured_image',''),(20252,1151,'_legend_featured_image','field_5d39e9d4ef8f8'),(20253,1151,'select_posts_related',''),(20254,1151,'_select_posts_related','field_5d3afdcff5db7'),(20255,1152,'media_assets',''),(20256,1152,'_media_assets','field_5d72c2c090478'),(20257,1152,'media_assets_archive_zip',''),(20258,1152,'_media_assets_archive_zip','field_5d768ad62c946'),(20259,1152,'author_news',''),(20260,1152,'_author_news','field_5d3083fbbea51'),(20261,1152,'select_brand',''),(20262,1152,'_select_brand','field_5d3084d736561'),(20263,1152,'featured_post','0'),(20264,1152,'_featured_post','field_5d30852c7c4e7'),(20265,1152,'url_video_featured_news',''),(20266,1152,'_url_video_featured_news','field_5d7ba065745f3'),(20267,1152,'legend_featured_image',''),(20268,1152,'_legend_featured_image','field_5d39e9d4ef8f8'),(20269,1152,'select_posts_related',''),(20270,1152,'_select_posts_related','field_5d3afdcff5db7'),(20271,1153,'media_assets',''),(20272,1153,'_media_assets','field_5d72c2c090478'),(20273,1153,'media_assets_archive_zip',''),(20274,1153,'_media_assets_archive_zip','field_5d768ad62c946'),(20275,1153,'author_news',''),(20276,1153,'_author_news','field_5d3083fbbea51'),(20277,1153,'select_brand',''),(20278,1153,'_select_brand','field_5d3084d736561'),(20279,1153,'featured_post','0'),(20280,1153,'_featured_post','field_5d30852c7c4e7'),(20281,1153,'url_video_featured_news',''),(20282,1153,'_url_video_featured_news','field_5d7ba065745f3'),(20283,1153,'legend_featured_image',''),(20284,1153,'_legend_featured_image','field_5d39e9d4ef8f8'),(20285,1153,'select_posts_related',''),(20286,1153,'_select_posts_related','field_5d3afdcff5db7'),(20287,1144,'_oembed_a6eb0e120e6b1688c2cddb5a17dae15c','<iframe title=\"Halle Berry Refuses to Lose to Spicy Wings | Hot Ones\" width=\"1440\" height=\"810\" src=\"https://www.youtube.com/embed/VwHwq5W18uY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(20288,1144,'_oembed_time_a6eb0e120e6b1688c2cddb5a17dae15c','1591650737'),(20289,1154,'media_assets',''),(20290,1154,'_media_assets','field_5d72c2c090478'),(20291,1154,'media_assets_archive_zip',''),(20292,1154,'_media_assets_archive_zip','field_5d768ad62c946'),(20293,1154,'author_news',''),(20294,1154,'_author_news','field_5d3083fbbea51'),(20295,1154,'select_brand',''),(20296,1154,'_select_brand','field_5d3084d736561'),(20297,1154,'featured_post','0'),(20298,1154,'_featured_post','field_5d30852c7c4e7'),(20299,1154,'url_video_featured_news',''),(20300,1154,'_url_video_featured_news','field_5d7ba065745f3'),(20301,1154,'legend_featured_image',''),(20302,1154,'_legend_featured_image','field_5d39e9d4ef8f8'),(20303,1154,'select_posts_related',''),(20304,1154,'_select_posts_related','field_5d3afdcff5db7'),(20305,1155,'media_assets',''),(20306,1155,'_media_assets','field_5d72c2c090478'),(20307,1155,'media_assets_archive_zip',''),(20308,1155,'_media_assets_archive_zip','field_5d768ad62c946'),(20309,1155,'author_news',''),(20310,1155,'_author_news','field_5d3083fbbea51'),(20311,1155,'select_brand',''),(20312,1155,'_select_brand','field_5d3084d736561'),(20313,1155,'featured_post','0'),(20314,1155,'_featured_post','field_5d30852c7c4e7'),(20315,1155,'url_video_featured_news',''),(20316,1155,'_url_video_featured_news','field_5d7ba065745f3'),(20317,1155,'legend_featured_image',''),(20318,1155,'_legend_featured_image','field_5d39e9d4ef8f8'),(20319,1155,'select_posts_related',''),(20320,1155,'_select_posts_related','field_5d3afdcff5db7'),(20325,1157,'media_assets',''),(20326,1157,'_media_assets','field_5d72c2c090478'),(20327,1157,'media_assets_archive_zip',''),(20328,1157,'_media_assets_archive_zip','field_5d768ad62c946'),(20329,1157,'author_news',''),(20330,1157,'_author_news','field_5d3083fbbea51'),(20331,1157,'select_brand',''),(20332,1157,'_select_brand','field_5d3084d736561'),(20333,1157,'featured_post','0'),(20334,1157,'_featured_post','field_5d30852c7c4e7'),(20335,1157,'url_video_featured_news',''),(20336,1157,'_url_video_featured_news','field_5d7ba065745f3'),(20337,1157,'legend_featured_image',''),(20338,1157,'_legend_featured_image','field_5d39e9d4ef8f8'),(20339,1157,'select_posts_related',''),(20340,1157,'_select_posts_related','field_5d3afdcff5db7'),(20341,1144,'_oembed_bb8ec7f591696fbefd16c4b43a919e40','<iframe title=\"How GOOD was Fedor Emelianenko Actually?\" width=\"1440\" height=\"810\" src=\"https://www.youtube.com/embed/7hTiNka4NV4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(20342,1144,'_oembed_time_bb8ec7f591696fbefd16c4b43a919e40','1592260415'),(20343,1159,'media_assets',''),(20344,1159,'_media_assets','field_5d72c2c090478'),(20345,1159,'media_assets_archive_zip',''),(20346,1159,'_media_assets_archive_zip','field_5d768ad62c946'),(20347,1159,'author_news',''),(20348,1159,'_author_news','field_5d3083fbbea51'),(20349,1159,'select_brand',''),(20350,1159,'_select_brand','field_5d3084d736561'),(20351,1159,'featured_post','0'),(20352,1159,'_featured_post','field_5d30852c7c4e7'),(20353,1159,'url_video_featured_news',''),(20354,1159,'_url_video_featured_news','field_5d7ba065745f3'),(20355,1159,'legend_featured_image',''),(20356,1159,'_legend_featured_image','field_5d39e9d4ef8f8'),(20357,1159,'select_posts_related',''),(20358,1159,'_select_posts_related','field_5d3afdcff5db7'),(20359,1160,'media_assets',''),(20360,1160,'_media_assets','field_5d72c2c090478'),(20361,1160,'media_assets_archive_zip',''),(20362,1160,'_media_assets_archive_zip','field_5d768ad62c946'),(20363,1160,'author_news',''),(20364,1160,'_author_news','field_5d3083fbbea51'),(20365,1160,'select_brand',''),(20366,1160,'_select_brand','field_5d3084d736561'),(20367,1160,'featured_post','0'),(20368,1160,'_featured_post','field_5d30852c7c4e7'),(20369,1160,'url_video_featured_news',''),(20370,1160,'_url_video_featured_news','field_5d7ba065745f3'),(20371,1160,'legend_featured_image',''),(20372,1160,'_legend_featured_image','field_5d39e9d4ef8f8'),(20373,1160,'select_posts_related',''),(20374,1160,'_select_posts_related','field_5d3afdcff5db7'),(20375,1161,'media_assets',''),(20376,1161,'_media_assets','field_5d72c2c090478'),(20377,1161,'media_assets_archive_zip',''),(20378,1161,'_media_assets_archive_zip','field_5d768ad62c946'),(20379,1161,'author_news',''),(20380,1161,'_author_news','field_5d3083fbbea51'),(20381,1161,'select_brand',''),(20382,1161,'_select_brand','field_5d3084d736561'),(20383,1161,'featured_post','0'),(20384,1161,'_featured_post','field_5d30852c7c4e7'),(20385,1161,'url_video_featured_news',''),(20386,1161,'_url_video_featured_news','field_5d7ba065745f3'),(20387,1161,'legend_featured_image',''),(20388,1161,'_legend_featured_image','field_5d39e9d4ef8f8'),(20389,1161,'select_posts_related',''),(20390,1161,'_select_posts_related','field_5d3afdcff5db7'),(20391,1162,'media_assets',''),(20392,1162,'_media_assets','field_5d72c2c090478'),(20393,1162,'media_assets_archive_zip',''),(20394,1162,'_media_assets_archive_zip','field_5d768ad62c946'),(20395,1162,'author_news',''),(20396,1162,'_author_news','field_5d3083fbbea51'),(20397,1162,'select_brand',''),(20398,1162,'_select_brand','field_5d3084d736561'),(20399,1162,'featured_post','0'),(20400,1162,'_featured_post','field_5d30852c7c4e7'),(20401,1162,'url_video_featured_news',''),(20402,1162,'_url_video_featured_news','field_5d7ba065745f3'),(20403,1162,'legend_featured_image',''),(20404,1162,'_legend_featured_image','field_5d39e9d4ef8f8'),(20405,1162,'select_posts_related',''),(20406,1162,'_select_posts_related','field_5d3afdcff5db7'),(20407,1144,'_thumbnail_id','699'),(20408,1124,'_edit_lock','1592261260:9'),(20409,1144,'media_assets_0_archive-list','1105'),(20410,1144,'_media_assets_0_archive-list','field_5d72c3139047a'),(20411,1144,'media_assets_1_archive-list','924'),(20412,1144,'_media_assets_1_archive-list','field_5d72c3139047a'),(20413,1164,'media_assets','2'),(20414,1164,'_media_assets','field_5d72c2c090478'),(20415,1164,'media_assets_archive_zip',''),(20416,1164,'_media_assets_archive_zip','field_5d768ad62c946'),(20417,1164,'author_news',''),(20418,1164,'_author_news','field_5d3083fbbea51'),(20419,1164,'select_brand',''),(20420,1164,'_select_brand','field_5d3084d736561'),(20421,1164,'featured_post','0'),(20422,1164,'_featured_post','field_5d30852c7c4e7'),(20423,1164,'url_video_featured_news',''),(20424,1164,'_url_video_featured_news','field_5d7ba065745f3'),(20425,1164,'legend_featured_image',''),(20426,1164,'_legend_featured_image','field_5d39e9d4ef8f8'),(20427,1164,'select_posts_related',''),(20428,1164,'_select_posts_related','field_5d3afdcff5db7'),(20429,1164,'media_assets_0_archive-list','1105'),(20430,1164,'_media_assets_0_archive-list','field_5d72c3139047a'),(20431,1164,'media_assets_1_archive-list','924'),(20432,1164,'_media_assets_1_archive-list','field_5d72c3139047a'),(20433,1165,'media_assets','2'),(20434,1165,'_media_assets','field_5d72c2c090478'),(20435,1165,'media_assets_archive_zip',''),(20436,1165,'_media_assets_archive_zip','field_5d768ad62c946'),(20437,1165,'author_news',''),(20438,1165,'_author_news','field_5d3083fbbea51'),(20439,1165,'select_brand',''),(20440,1165,'_select_brand','field_5d3084d736561'),(20441,1165,'featured_post','0'),(20442,1165,'_featured_post','field_5d30852c7c4e7'),(20443,1165,'url_video_featured_news',''),(20444,1165,'_url_video_featured_news','field_5d7ba065745f3'),(20445,1165,'legend_featured_image',''),(20446,1165,'_legend_featured_image','field_5d39e9d4ef8f8'),(20447,1165,'select_posts_related',''),(20448,1165,'_select_posts_related','field_5d3afdcff5db7'),(20449,1165,'media_assets_0_archive-list','1105'),(20450,1165,'_media_assets_0_archive-list','field_5d72c3139047a'),(20451,1165,'media_assets_1_archive-list','924'),(20452,1165,'_media_assets_1_archive-list','field_5d72c3139047a'),(20453,1167,'media_assets','2'),(20454,1167,'_media_assets','field_5d72c2c090478'),(20455,1167,'media_assets_archive_zip',''),(20456,1167,'_media_assets_archive_zip','field_5d768ad62c946'),(20457,1167,'author_news',''),(20458,1167,'_author_news','field_5d3083fbbea51'),(20459,1167,'select_brand',''),(20460,1167,'_select_brand','field_5d3084d736561'),(20461,1167,'featured_post','0'),(20462,1167,'_featured_post','field_5d30852c7c4e7'),(20463,1167,'url_video_featured_news',''),(20464,1167,'_url_video_featured_news','field_5d7ba065745f3'),(20465,1167,'legend_featured_image',''),(20466,1167,'_legend_featured_image','field_5d39e9d4ef8f8'),(20467,1167,'select_posts_related',''),(20468,1167,'_select_posts_related','field_5d3afdcff5db7'),(20469,1167,'media_assets_0_archive-list','1105'),(20470,1167,'_media_assets_0_archive-list','field_5d72c3139047a'),(20471,1167,'media_assets_1_archive-list','924'),(20472,1167,'_media_assets_1_archive-list','field_5d72c3139047a'),(20473,1169,'media_assets','2'),(20474,1169,'_media_assets','field_5d72c2c090478'),(20475,1169,'media_assets_archive_zip',''),(20476,1169,'_media_assets_archive_zip','field_5d768ad62c946'),(20477,1169,'author_news',''),(20478,1169,'_author_news','field_5d3083fbbea51'),(20479,1169,'select_brand',''),(20480,1169,'_select_brand','field_5d3084d736561'),(20481,1169,'featured_post','0'),(20482,1169,'_featured_post','field_5d30852c7c4e7'),(20483,1169,'url_video_featured_news',''),(20484,1169,'_url_video_featured_news','field_5d7ba065745f3'),(20485,1169,'legend_featured_image',''),(20486,1169,'_legend_featured_image','field_5d39e9d4ef8f8'),(20487,1169,'select_posts_related',''),(20488,1169,'_select_posts_related','field_5d3afdcff5db7'),(20489,1169,'media_assets_0_archive-list','1105'),(20490,1169,'_media_assets_0_archive-list','field_5d72c3139047a'),(20491,1169,'media_assets_1_archive-list','924'),(20492,1169,'_media_assets_1_archive-list','field_5d72c3139047a'),(20498,1144,'enclosure','http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\n28437970\nvideo/mp4\n'),(20499,1176,'_edit_lock','1594241364:9'),(20500,1176,'_edit_last','9'),(20501,1176,'media_assets',''),(20502,1176,'_media_assets','field_5d72c2c090478'),(20503,1176,'media_assets_archive_zip',''),(20504,1176,'_media_assets_archive_zip','field_5d768ad62c946'),(20505,1176,'author_news',''),(20506,1176,'_author_news','field_5d3083fbbea51'),(20507,1176,'select_brand',''),(20508,1176,'_select_brand','field_5d3084d736561'),(20509,1176,'featured_post','0'),(20510,1176,'_featured_post','field_5d30852c7c4e7'),(20511,1176,'url_video_featured_news',''),(20512,1176,'_url_video_featured_news','field_5d7ba065745f3'),(20513,1176,'legend_featured_image',''),(20514,1176,'_legend_featured_image','field_5d39e9d4ef8f8'),(20515,1176,'select_posts_related',''),(20516,1176,'_select_posts_related','field_5d3afdcff5db7'),(20517,1177,'media_assets',''),(20518,1177,'_media_assets','field_5d72c2c090478'),(20519,1177,'media_assets_archive_zip',''),(20520,1177,'_media_assets_archive_zip','field_5d768ad62c946'),(20521,1177,'author_news',''),(20522,1177,'_author_news','field_5d3083fbbea51'),(20523,1177,'select_brand',''),(20524,1177,'_select_brand','field_5d3084d736561'),(20525,1177,'featured_post','0'),(20526,1177,'_featured_post','field_5d30852c7c4e7'),(20527,1177,'url_video_featured_news',''),(20528,1177,'_url_video_featured_news','field_5d7ba065745f3'),(20529,1177,'legend_featured_image',''),(20530,1177,'_legend_featured_image','field_5d39e9d4ef8f8'),(20531,1177,'select_posts_related',''),(20532,1177,'_select_posts_related','field_5d3afdcff5db7'),(20537,1176,'enclosure','http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\n28437970\nvideo/mp4\n'),(20538,1178,'_edit_lock','1593096646:9'),(20543,1179,'media_assets','2'),(20544,1179,'_media_assets','field_5d72c2c090478'),(20545,1179,'media_assets_archive_zip',''),(20546,1179,'_media_assets_archive_zip','field_5d768ad62c946'),(20547,1179,'author_news',''),(20548,1179,'_author_news','field_5d3083fbbea51'),(20549,1179,'select_brand',''),(20550,1179,'_select_brand','field_5d3084d736561'),(20551,1179,'featured_post','0'),(20552,1179,'_featured_post','field_5d30852c7c4e7'),(20553,1179,'url_video_featured_news',''),(20554,1179,'_url_video_featured_news','field_5d7ba065745f3'),(20555,1179,'legend_featured_image',''),(20556,1179,'_legend_featured_image','field_5d39e9d4ef8f8'),(20557,1179,'select_posts_related',''),(20558,1179,'_select_posts_related','field_5d3afdcff5db7'),(20559,1179,'media_assets_0_archive-list','1105'),(20560,1179,'_media_assets_0_archive-list','field_5d72c3139047a'),(20561,1179,'media_assets_1_archive-list','924'),(20562,1179,'_media_assets_1_archive-list','field_5d72c3139047a'),(20563,1181,'_edit_lock','1593713507:9'),(20564,1183,'_wp_attached_file','2020/07/china_supply_chain_future.png'),(20565,1183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4603;s:6:\"height\";i:2589;s:4:\"file\";s:37:\"2020/07/china_supply_chain_future.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured-index\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1000x811.png\";s:5:\"width\";i:1000;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"related-index\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"featured-archive\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"related-archive\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"list-archive\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"featured-single\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1600x900.png\";s:5:\"width\";i:1600;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"featured-faq\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-small\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-820x640.png\";s:5:\"width\";i:820;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-faq-learn\";a:4:{s:4:\"file\";s:38:\"china_supply_chain_future-1500x940.png\";s:5:\"width\";i:1500;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"featured-faq-list\";a:4:{s:4:\"file\";s:37:\"china_supply_chain_future-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:{}}}'),(20566,399,'content_text',''),(20567,399,'_content_text','field_5da4a90b176f4'),(20568,399,'content_faq_1_image_featured_row','548'),(20569,399,'_content_faq_1_image_featured_row','field_5d4c26e83bd78'),(20570,399,'content_faq_1_text_row_content','<b>Do I need to purchase the Celebrity Edge Access Tour App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No. The app is free to download.</span>\r\n\r\n<b>Am I required to purchase an internet package to use the app onboard?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">No, you can use the app on the Celebrity-Wifi network at no charge while onboard. </span>\r\n\r\n<b>How can I download the Celebrity Edge Access Tour App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The Edge Access Tour can be downloaded in two ways.</span>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Pre-cruise directly through the Apple App Store or Google Play Store</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Through the Edge Access Tour entry point in the Celebrity Mobile App</span></li>\r\n</ul>\r\n<b>Which mobile devices are compatible with the Celebrity Edge Access Tour app?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">The Celebrity Edge Access Tour app is supported on the following devices and operating systems:</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Apple 6s or newer with iOS 11</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">• Android 7 or newer</span>\r\n\r\n<b>What locations are showcase on the Celebrity Edge Access Tour App?</b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There are a total of 13 locations that can be activated through the app. These locations include:</span>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Welcome (at home pre-cruise)</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Grand Plaza</span></li>\r\n 	<li><span style=\"font-weight: 400;\"> The Theatr</span><span style=\"font-weight: 400;\"> </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Eden</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Destination Gateway</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Magic Carpet</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Solarium</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Resort Deck</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Rooftop Garden</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Galley</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Bridge</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Engine Control Room</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Edge Launch</span></li>\r\n</ul>'),(20571,399,'_content_faq_1_text_row_content','field_5d4c272f3bd79'),(20572,1186,'_edit_lock','1595604071:9'),(20573,1186,'_oembed_6fc966bd28b1dbd81239ccdea4e27108','<iframe title=\"Charlize Theron Takes a Rorschach Test While Eating Spicy Wings | Hot Ones\" width=\"1440\" height=\"810\" src=\"https://www.youtube.com/embed/ZgQMW4eVrzw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(20574,1186,'_oembed_time_6fc966bd28b1dbd81239ccdea4e27108','1594920685'),(20575,1186,'_edit_last','9'),(20576,1186,'media_assets',''),(20577,1186,'_media_assets','field_5d72c2c090478'),(20578,1186,'media_assets_archive_zip',''),(20579,1186,'_media_assets_archive_zip','field_5d768ad62c946'),(20580,1186,'author_news',''),(20581,1186,'_author_news','field_5d3083fbbea51'),(20582,1186,'select_brand',''),(20583,1186,'_select_brand','field_5d3084d736561'),(20584,1186,'featured_post','0'),(20585,1186,'_featured_post','field_5d30852c7c4e7'),(20586,1186,'url_video_featured_news',''),(20587,1186,'_url_video_featured_news','field_5d7ba065745f3'),(20588,1186,'legend_featured_image',''),(20589,1186,'_legend_featured_image','field_5d39e9d4ef8f8'),(20590,1186,'select_posts_related',''),(20591,1186,'_select_posts_related','field_5d3afdcff5db7'),(20592,1187,'media_assets',''),(20593,1187,'_media_assets','field_5d72c2c090478'),(20594,1187,'media_assets_archive_zip',''),(20595,1187,'_media_assets_archive_zip','field_5d768ad62c946'),(20596,1187,'author_news',''),(20597,1187,'_author_news','field_5d3083fbbea51'),(20598,1187,'select_brand',''),(20599,1187,'_select_brand','field_5d3084d736561'),(20600,1187,'featured_post','0'),(20601,1187,'_featured_post','field_5d30852c7c4e7'),(20602,1187,'url_video_featured_news',''),(20603,1187,'_url_video_featured_news','field_5d7ba065745f3'),(20604,1187,'legend_featured_image',''),(20605,1187,'_legend_featured_image','field_5d39e9d4ef8f8'),(20606,1187,'select_posts_related',''),(20607,1187,'_select_posts_related','field_5d3afdcff5db7'),(20621,1188,'media_assets',''),(20622,1188,'_media_assets','field_5d72c2c090478'),(20623,1188,'media_assets_archive_zip',''),(20624,1188,'_media_assets_archive_zip','field_5d768ad62c946'),(20625,1188,'author_news',''),(20626,1188,'_author_news','field_5d3083fbbea51'),(20627,1188,'select_brand',''),(20628,1188,'_select_brand','field_5d3084d736561'),(20629,1188,'featured_post','0'),(20630,1188,'_featured_post','field_5d30852c7c4e7'),(20631,1188,'url_video_featured_news',''),(20632,1188,'_url_video_featured_news','field_5d7ba065745f3'),(20633,1188,'legend_featured_image',''),(20634,1188,'_legend_featured_image','field_5d39e9d4ef8f8'),(20635,1188,'select_posts_related',''),(20636,1188,'_select_posts_related','field_5d3afdcff5db7'),(20637,1189,'_edit_lock','1595889367:9'),(20638,1189,'_edit_last','9'),(20639,1189,'media_assets',''),(20640,1189,'_media_assets','field_5d72c2c090478'),(20641,1189,'media_assets_archive_zip',''),(20642,1189,'_media_assets_archive_zip','field_5d768ad62c946'),(20643,1189,'author_news',''),(20644,1189,'_author_news','field_5d3083fbbea51'),(20645,1189,'select_brand',''),(20646,1189,'_select_brand','field_5d3084d736561'),(20647,1189,'featured_post','0'),(20648,1189,'_featured_post','field_5d30852c7c4e7'),(20649,1189,'url_video_featured_news',''),(20650,1189,'_url_video_featured_news','field_5d7ba065745f3'),(20651,1189,'legend_featured_image',''),(20652,1189,'_legend_featured_image','field_5d39e9d4ef8f8'),(20653,1189,'select_posts_related',''),(20654,1189,'_select_posts_related','field_5d3afdcff5db7'),(20655,1190,'media_assets',''),(20656,1190,'_media_assets','field_5d72c2c090478'),(20657,1190,'media_assets_archive_zip',''),(20658,1190,'_media_assets_archive_zip','field_5d768ad62c946'),(20659,1190,'author_news',''),(20660,1190,'_author_news','field_5d3083fbbea51'),(20661,1190,'select_brand',''),(20662,1190,'_select_brand','field_5d3084d736561'),(20663,1190,'featured_post','0'),(20664,1190,'_featured_post','field_5d30852c7c4e7'),(20665,1190,'url_video_featured_news',''),(20666,1190,'_url_video_featured_news','field_5d7ba065745f3'),(20667,1190,'legend_featured_image',''),(20668,1190,'_legend_featured_image','field_5d39e9d4ef8f8'),(20669,1190,'select_posts_related',''),(20670,1190,'_select_posts_related','field_5d3afdcff5db7');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (7,1,'2019-07-03 20:53:09','2019-07-03 20:53:09','','Contact','','publish','closed','closed','','contact','','','2019-07-03 20:53:09','2019-07-03 20:53:09','',0,'http://royaldigital.labcp.co/?page_id=7',0,'page','',0),(8,1,'2019-07-03 20:53:09','2019-07-03 20:53:09','','Contact','','inherit','closed','closed','','7-revision-v1','','','2019-07-03 20:53:09','2019-07-03 20:53:09','',7,'http://royaldigital.labcp.co/2019/07/03/7-revision-v1/',0,'revision','',0),(17,1,'2019-07-15 17:02:54','2019-07-15 17:02:54','','Home','','publish','closed','closed','','home','','','2019-10-22 17:12:41','2019-10-22 17:12:41','',0,'http://localhost/royal-caribbean-digital/web/?page_id=17',0,'page','',0),(18,1,'2019-07-15 17:02:54','2019-07-15 17:02:54','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 17:02:54','2019-07-15 17:02:54','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(25,1,'2019-07-15 17:36:11','2019-07-15 17:36:11',' ','','','publish','closed','closed','','25','','','2019-08-30 21:25:07','2019-08-30 21:25:07','',0,'http://localhost/royal-caribbean-digital/web/?p=25',1,'nav_menu_item','',0),(28,1,'2019-07-15 17:39:51','2019-07-15 17:39:51','','Terms','','publish','closed','closed','','terms','','','2019-07-15 17:39:51','2019-07-15 17:39:51','',0,'http://localhost/royal-caribbean-digital/web/?p=28',1,'nav_menu_item','',0),(29,1,'2019-07-15 17:39:52','2019-07-15 17:39:52','','Privacy','','publish','closed','closed','','privacy','','','2019-07-15 17:39:52','2019-07-15 17:39:52','',0,'http://localhost/royal-caribbean-digital/web/?p=29',2,'nav_menu_item','',0),(30,1,'2019-07-15 17:39:52','2019-07-15 17:39:52',' ','','','publish','closed','closed','','30','','','2019-07-15 17:39:52','2019-07-15 17:39:52','',0,'http://localhost/royal-caribbean-digital/web/?p=30',3,'nav_menu_item','',0),(31,1,'2019-07-15 17:49:37','2019-07-15 17:49:37','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"theme\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Social Network','social-network','publish','closed','closed','','group_5d2cbc9eb4594','','','2019-07-15 17:51:25','2019-07-15 17:51:25','',0,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field-group&#038;p=31',0,'acf-field-group','',0),(32,1,'2019-07-15 17:51:24','2019-07-15 17:51:24','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Facebook','link-facebook','publish','closed','closed','','field_5d2cbcb54200a','','','2019-07-15 17:51:24','2019-07-15 17:51:24','',31,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=32',0,'acf-field','',0),(33,1,'2019-07-15 17:51:24','2019-07-15 17:51:24','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Twitter','link-twitter','publish','closed','closed','','field_5d2cbcd44200b','','','2019-07-15 17:51:24','2019-07-15 17:51:24','',31,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=33',1,'acf-field','',0),(34,1,'2019-07-15 17:51:24','2019-07-15 17:51:24','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Youtube','link-youtube','publish','closed','closed','','field_5d2cbcf14200c','','','2019-07-15 17:51:24','2019-07-15 17:51:24','',31,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=34',2,'acf-field','',0),(35,1,'2019-07-15 17:51:24','2019-07-15 17:51:24','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Instagram','link-instagram','publish','closed','closed','','field_5d2cbd024200d','','','2019-07-15 17:51:24','2019-07-15 17:51:24','',31,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=35',3,'acf-field','',0),(36,1,'2019-07-15 18:02:30','2019-07-15 18:02:30','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:13:\"page-home.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:12:{i:0;s:11:\"the_content\";i:1;s:7:\"excerpt\";i:2;s:10:\"discussion\";i:3;s:8:\"comments\";i:4;s:9:\"revisions\";i:5;s:4:\"slug\";i:6;s:6:\"author\";i:7;s:6:\"format\";i:8;s:14:\"featured_image\";i:9;s:10:\"categories\";i:10;s:4:\"tags\";i:11;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Home','home','publish','closed','closed','','group_5d2cbf7a4f9ab','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',0,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field-group&#038;p=36',0,'acf-field-group','',0),(37,1,'2019-07-15 18:03:28','2019-07-15 18:03:28','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero','hero','publish','closed','closed','','field_5d2cbfb9c7b2a','','','2019-07-15 18:03:28','2019-07-15 18:03:28','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=37',0,'acf-field','',0),(38,1,'2019-07-15 18:03:28','2019-07-15 18:03:28','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title hero','title_hero','publish','closed','closed','','field_5d2cbfcfc7b2b','','','2019-07-15 18:03:28','2019-07-15 18:03:28','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=38',1,'acf-field','',0),(39,1,'2019-07-15 18:04:03','2019-07-15 18:04:03','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:04:03','2019-07-15 18:04:03','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(45,1,'2019-07-15 18:09:47','2019-07-15 18:09:47','','ships','','inherit','open','closed','','ships','','','2019-08-01 14:03:02','2019-08-01 14:03:02','',17,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ships.jpg',0,'attachment','image/jpeg',0),(46,1,'2019-07-15 18:10:03','2019-07-15 18:10:03','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:10:03','2019-07-15 18:10:03','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(47,1,'2019-07-15 18:14:53','2019-07-15 18:14:53','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Blockquote','blockquote','publish','closed','closed','','field_5d2cc21e9da99','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=47',13,'acf-field','',0),(48,1,'2019-07-15 18:14:54','2019-07-15 18:14:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description blockquote','description_blockquote','publish','closed','closed','','field_5d2cc22c9da9a','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=48',14,'acf-field','',0),(49,1,'2019-07-15 18:14:54','2019-07-15 18:14:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Author blockquote','author_blockquote','publish','closed','closed','','field_5d2cc25a9da9b','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=49',15,'acf-field','',0),(50,1,'2019-07-15 18:14:54','2019-07-15 18:14:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Company blockquote','company_blockquote','publish','closed','closed','','field_5d2cc2769da9c','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=50',16,'acf-field','',0),(51,1,'2019-07-15 18:15:54','2019-07-15 18:15:54','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:15:54','2019-07-15 18:15:54','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(52,1,'2019-07-15 18:18:05','2019-07-15 18:18:05','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:18:05','2019-07-15 18:18:05','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(53,1,'2019-07-15 18:24:00','2019-07-15 18:24:00','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured I','featured_i','publish','closed','closed','','field_5d2cc3fe90f83','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=53',17,'acf-field','',0),(54,1,'2019-07-15 18:24:01','2019-07-15 18:24:01','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Featured I','title_featured_i','publish','closed','closed','','field_5d2cc41890f84','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=54',18,'acf-field','',0),(55,1,'2019-07-15 18:24:01','2019-07-15 18:24:01','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Featured I','description_featured_i','publish','closed','closed','','field_5d2cc42890f85','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=55',19,'acf-field','',0),(56,1,'2019-07-15 18:24:01','2019-07-15 18:24:01','a:12:{s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"Link\";s:4:\"Link\";s:6:\"Vídeo\";s:6:\"Vídeo\";}s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:13:\"default_value\";s:0:\"\";s:6:\"layout\";s:8:\"vertical\";s:13:\"return_format\";s:5:\"value\";s:17:\"save_other_choice\";i:0;}','Seletc Type Link','seletc_type_link_featured_i','publish','closed','closed','','field_5d2cc45b90f86','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=56',21,'acf-field','',0),(57,1,'2019-07-15 18:24:01','2019-07-15 18:24:01','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link News or Link Vídeo','link_news_or_link_video_featured_i','publish','closed','closed','','field_5d2cc48a90f87','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=57',22,'acf-field','',0),(58,1,'2019-07-15 18:24:53','2019-07-15 18:24:53','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:24:53','2019-07-15 18:24:53','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(59,1,'2019-07-15 18:25:44','2019-07-15 18:25:44','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:25:44','2019-07-15 18:25:44','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(60,1,'2019-07-15 18:34:37','2019-07-15 18:34:37','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Imagem Featured I','imagem_featured_i','publish','closed','closed','','field_5d2cc71559443','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=60',20,'acf-field','',0),(61,1,'2019-07-15 18:35:15','2019-07-15 18:35:15','','edge','','inherit','open','closed','','edge','','','2019-07-15 18:35:15','2019-07-15 18:35:15','',17,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/edge.jpg',0,'attachment','image/jpeg',0),(62,1,'2019-07-15 18:35:21','2019-07-15 18:35:21','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:35:21','2019-07-15 18:35:21','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(63,1,'2019-07-15 18:39:47','2019-07-15 18:39:47','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Info Numbers','info_numbers','publish','closed','closed','','field_5d2cc7cc17634','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=63',23,'acf-field','',0),(64,1,'2019-07-15 18:39:47','2019-07-15 18:39:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Info Numbers','title_info_numbers','publish','closed','closed','','field_5d2cc7e517635','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=64',24,'acf-field','',0),(65,1,'2019-07-15 18:39:47','2019-07-15 18:39:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Info Number','description_info_number','publish','closed','closed','','field_5d2cc7f817636','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=65',25,'acf-field','',0),(66,1,'2019-07-15 18:39:48','2019-07-15 18:39:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','App downloads','app_downloads','publish','closed','closed','','field_5d2cc83e17637','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=66',26,'acf-field','',0),(67,1,'2019-07-15 18:39:48','2019-07-15 18:39:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Active users','active_users','publish','closed','closed','','field_5d2cc84617638','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=67',27,'acf-field','',0),(68,1,'2019-07-15 18:39:48','2019-07-15 18:39:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Average iOS rating','average_ios_rating','publish','closed','closed','','field_5d2cc85217639','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=68',28,'acf-field','',0),(69,1,'2019-07-15 18:39:48','2019-07-15 18:39:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Crew checkins','crew_checkins','publish','closed','closed','','field_5d2cc8631763a','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=69',29,'acf-field','',0),(70,1,'2019-07-15 18:41:27','2019-07-15 18:41:27','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:41:27','2019-07-15 18:41:27','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(71,1,'2019-07-15 18:46:17','2019-07-15 18:46:17','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured II','_copy','publish','closed','closed','','field_5d2cc96b1153b','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=71',30,'acf-field','',0),(72,1,'2019-07-15 18:46:17','2019-07-15 18:46:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Featured II','title_featured_ii','publish','closed','closed','','field_5d2cc9741153c','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=72',31,'acf-field','',0),(73,1,'2019-07-15 18:46:17','2019-07-15 18:46:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Featured II','description_featured_ii','publish','closed','closed','','field_5d2cc97e1153d','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=73',32,'acf-field','',0),(74,1,'2019-07-15 18:46:17','2019-07-15 18:46:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Imagem Featured II','imagem_featured_ii','publish','closed','closed','','field_5d2cc98c1153e','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=74',33,'acf-field','',0),(75,1,'2019-07-15 18:46:17','2019-07-15 18:46:17','a:12:{s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"Link\";s:4:\"Link\";s:6:\"Vídeo\";s:6:\"Vídeo\";}s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:13:\"default_value\";s:0:\"\";s:6:\"layout\";s:8:\"vertical\";s:13:\"return_format\";s:5:\"value\";s:17:\"save_other_choice\";i:0;}','Seletc Type Link','seletc_type_link_featured_ii','publish','closed','closed','','field_5d2cc9941153f','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=75',34,'acf-field','',0),(76,1,'2019-07-15 18:46:18','2019-07-15 18:46:18','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link News or Link Vídeo','link_news_or_link_video_featured_ii','publish','closed','closed','','field_5d2cc99e11540','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=76',35,'acf-field','',0),(77,1,'2019-07-15 18:48:16','2019-07-15 18:48:16','','kitchen','','inherit','open','closed','','kitchen','','','2019-07-15 18:48:16','2019-07-15 18:48:16','',17,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/kitchen.jpg',0,'attachment','image/jpeg',0),(78,1,'2019-07-15 18:48:28','2019-07-15 18:48:28','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:48:28','2019-07-15 18:48:28','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(79,1,'2019-07-15 18:52:05','2019-07-15 18:52:05','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured III','_copy','publish','closed','closed','','field_5d2ccaf4f0229','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=79',36,'acf-field','',0),(80,1,'2019-07-15 18:52:06','2019-07-15 18:52:06','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Featured III','title_featured_iii','publish','closed','closed','','field_5d2ccafff022a','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=80',37,'acf-field','',0),(81,1,'2019-07-15 18:52:06','2019-07-15 18:52:06','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Featured III','description_featured_iii','publish','closed','closed','','field_5d2ccb0cf022b','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=81',38,'acf-field','',0),(82,1,'2019-07-15 18:52:06','2019-07-15 18:52:06','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Imagem Featured III','imagem_featured_iii','publish','closed','closed','','field_5d2ccb21f022c','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=82',39,'acf-field','',0),(83,1,'2019-07-15 18:52:06','2019-07-15 18:52:06','a:12:{s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"Link\";s:4:\"Link\";s:6:\"Vídeo\";s:6:\"Vídeo\";}s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:13:\"default_value\";s:0:\"\";s:6:\"layout\";s:8:\"vertical\";s:13:\"return_format\";s:5:\"value\";s:17:\"save_other_choice\";i:0;}','Seletc Type Link','seletc_type_link_featured_iii','publish','closed','closed','','field_5d2ccb30f022d','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=83',40,'acf-field','',0),(84,1,'2019-07-15 18:52:06','2019-07-15 18:52:06','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link News or Link Vídeo','link_news_or_link_video_featured_iii','publish','closed','closed','','field_5d2ccb3df022e','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=84',41,'acf-field','',0),(85,1,'2019-07-15 18:53:37','2019-07-15 18:53:37','','ai','','inherit','open','closed','','ai','','','2019-07-15 18:53:37','2019-07-15 18:53:37','',17,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ai.jpg',0,'attachment','image/jpeg',0),(86,1,'2019-07-15 18:53:53','2019-07-15 18:53:53','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-15 18:53:53','2019-07-15 18:53:53','',17,'http://localhost/royal-caribbean-digital/web/17-revision-v1/',0,'revision','',0),(88,1,'2019-07-15 19:32:07','2019-07-15 19:32:07','','Celebrity Cruises','','publish','closed','closed','','celebrity','','','2019-10-14 13:25:24','2019-10-14 13:25:24','',0,'http://localhost/royal-caribbean-digital/web/?post_type=brands&#038;p=88',0,'brands','',0),(89,1,'2019-07-15 19:56:45','2019-07-15 19:56:45','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"ships\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Ships','ships','publish','closed','closed','','group_5d2cda63bf0cc','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',0,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field-group&#038;p=89',0,'acf-field-group','',0),(90,1,'2019-07-15 19:58:01','2019-07-15 19:58:01','a:11:{s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:6:\"brands\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:13:\"return_format\";s:6:\"object\";s:2:\"ui\";i:1;}','Select Brand','select_brand','publish','closed','closed','','field_5d2cda81bbd5a','','','2019-07-17 12:49:03','2019-07-17 12:49:03','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=90',1,'acf-field','',0),(93,1,'2019-07-15 20:03:52','2019-07-15 20:03:52','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"brands\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:12:{i:0;s:11:\"the_content\";i:1;s:7:\"excerpt\";i:2;s:10:\"discussion\";i:3;s:8:\"comments\";i:4;s:9:\"revisions\";i:5;s:6:\"author\";i:6;s:6:\"format\";i:7;s:15:\"page_attributes\";i:8;s:14:\"featured_image\";i:9;s:10:\"categories\";i:10;s:4:\"tags\";i:11;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Brands','brands','publish','closed','closed','','group_5d2cdc1ad7f49','','','2019-08-02 12:09:43','2019-08-02 12:09:43','',0,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field-group&#038;p=93',0,'acf-field-group','',0),(94,1,'2019-07-15 20:05:42','2019-07-15 20:05:42','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Welcome','welcome','publish','closed','closed','','field_5d2cdc2c11f1d','','','2019-07-15 20:05:42','2019-07-15 20:05:42','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=94',0,'acf-field','',0),(95,1,'2019-07-15 20:05:42','2019-07-15 20:05:42','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo Brand','logo_brand','publish','closed','closed','','field_5d2cdc5e11f1f','','','2019-07-15 20:05:42','2019-07-15 20:05:42','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=95',1,'acf-field','',0),(96,1,'2019-07-15 20:05:42','2019-07-15 20:05:42','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Welcome','title_welcome','publish','closed','closed','','field_5d2cdc5311f1e','','','2019-07-15 20:05:42','2019-07-15 20:05:42','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=96',2,'acf-field','',0),(97,1,'2019-07-15 20:05:42','2019-07-15 20:05:42','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Welcome','description_welcome','publish','closed','closed','','field_5d2cdc7811f20','','','2019-07-15 20:05:42','2019-07-15 20:05:42','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=97',3,'acf-field','',0),(98,1,'2019-07-15 20:05:43','2019-07-15 20:05:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Imagem Welcome','imagem_welcome','publish','closed','closed','','field_5d2cdc8311f21','','','2019-07-15 20:05:43','2019-07-15 20:05:43','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=98',4,'acf-field','',0),(100,1,'2019-07-15 20:07:08','2019-07-15 20:07:08','','ship-cover','','inherit','open','closed','','ship-cover','','','2019-07-18 16:35:35','2019-07-18 16:35:35','',88,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ship-cover.jpg',0,'attachment','image/jpeg',0),(101,1,'2019-07-15 20:15:31','2019-07-15 20:15:31','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Brand Details','brand_details','publish','closed','closed','','field_5d2cde2914b3d','','','2019-08-02 12:08:09','2019-08-02 12:08:09','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=101',5,'acf-field','',0),(102,1,'2019-07-15 20:15:31','2019-07-15 20:15:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Details','title_luxury','publish','closed','closed','','field_5d2cde3d14b3e','','','2019-08-02 12:09:36','2019-08-02 12:09:36','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=102',6,'acf-field','',0),(103,1,'2019-07-15 20:15:31','2019-07-15 20:15:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Details','description_luxury','publish','closed','closed','','field_5d2cde4914b3f','','','2019-08-02 12:09:43','2019-08-02 12:09:43','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=103',7,'acf-field','',0),(104,1,'2019-07-15 20:15:31','2019-07-15 20:15:31','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Awards','awards','publish','closed','closed','','field_5d2cde9e14b40','','','2019-07-15 20:15:31','2019-07-15 20:15:31','',93,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=104',8,'acf-field','',0),(105,1,'2019-07-15 20:15:31','2019-07-15 20:15:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Awards','title_awards','publish','closed','closed','','field_5d2cdeb514b41','','','2019-07-15 20:15:31','2019-07-15 20:15:31','',104,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=105',0,'acf-field','',0),(106,1,'2019-07-15 20:15:32','2019-07-15 20:15:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo Awards','logo_awards','publish','closed','closed','','field_5d2cdec114b42','','','2019-07-15 20:15:32','2019-07-15 20:15:32','',104,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=106',1,'acf-field','',0),(107,1,'2019-07-15 20:16:26','2019-07-15 20:16:26','','award-1','','inherit','open','closed','','award-1','','','2019-07-15 20:16:26','2019-07-15 20:16:26','',88,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/award-1.png',0,'attachment','image/png',0),(108,1,'2019-07-15 20:23:26','2019-07-15 20:23:26','','Constellation','','publish','closed','closed','','our-fleet','','','2019-09-10 19:22:23','2019-09-10 19:22:23','',0,'http://localhost/royal-caribbean-digital/web/?post_type=ships&#038;p=108',0,'ships','',0),(109,1,'2019-07-15 20:30:18','2019-07-15 20:30:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subtitle Ship','subtitle_ship','publish','closed','closed','','field_5d2ce1bd8774a','','','2019-07-17 12:49:03','2019-07-17 12:49:03','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=109',2,'acf-field','',0),(110,1,'2019-07-15 20:30:18','2019-07-15 20:30:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Ship','description_ship','publish','closed','closed','','field_5d2ce1f38774b','','','2019-07-17 12:49:03','2019-07-17 12:49:03','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=110',3,'acf-field','',0),(112,1,'2019-07-15 20:46:39','2019-07-15 20:46:39','','ship','','inherit','open','closed','','ship','','','2019-07-15 20:46:39','2019-07-15 20:46:39','',108,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ship.png',0,'attachment','image/png',0),(113,1,'2019-07-15 20:50:31','2019-07-15 20:50:31','','Equinox','','publish','closed','closed','','lorem-ipsum','','','2019-09-10 19:23:40','2019-09-10 19:23:40','',0,'http://localhost/royal-caribbean-digital/web/?post_type=ships&#038;p=113',0,'ships','',0),(117,1,'2019-07-17 12:49:03','2019-07-17 12:49:03','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Spotlight','spotlight','publish','closed','closed','','field_5d2f1925c6b72','','','2019-07-17 12:49:03','2019-07-17 12:49:03','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=117',0,'acf-field','',0),(118,1,'2019-07-17 12:49:03','2019-07-17 12:49:03','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Internal','internal','publish','closed','closed','','field_5d2f1930c6b73','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=118',4,'acf-field','',0),(119,1,'2019-07-17 12:49:45','2019-07-17 12:49:45','','Celebrity Cruises','','publish','closed','closed','','119','','','2019-07-29 19:29:05','2019-07-29 19:29:05','',0,'http://localhost/royal-caribbean-digital/web/?p=119',2,'nav_menu_item','',0),(121,1,'2019-07-17 13:37:50','2019-07-17 13:37:50','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Brand Ship','title_brand_ship','publish','closed','closed','','field_5d2f247516989','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=121',5,'acf-field','',0),(122,1,'2019-07-17 13:37:51','2019-07-17 13:37:51','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Brand Ship','description_brand_ship','publish','closed','closed','','field_5d2f24851698a','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=122',6,'acf-field','',0),(123,1,'2019-07-17 13:37:51','2019-07-17 13:37:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Photo Ship (578x1585px)','photo_ship','publish','closed','closed','','field_5d2f24901698b','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=123',7,'acf-field','',0),(124,1,'2019-07-17 13:41:38','2019-07-17 13:41:38','','ship-brand','','inherit','open','closed','','ship-brand','','','2019-07-17 13:41:38','2019-07-17 13:41:38','',108,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ship-brand.png',0,'attachment','image/png',0),(125,1,'2019-07-17 13:51:03','2019-07-17 13:51:03','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Technology','technology','publish','closed','closed','','field_5d2f2738dcd05','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=125',10,'acf-field','',0),(126,1,'2019-07-17 13:51:03','2019-07-17 13:51:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Technology','title_technology','publish','closed','closed','','field_5d2f2748dcd06','','','2019-07-17 13:51:03','2019-07-17 13:51:03','',125,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=126',0,'acf-field','',0),(127,1,'2019-07-17 13:51:03','2019-07-17 13:51:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description Technology','description_technology','publish','closed','closed','','field_5d2f2754dcd07','','','2019-07-17 13:51:03','2019-07-17 13:51:03','',125,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&p=127',1,'acf-field','',0),(128,1,'2019-07-17 13:51:03','2019-07-17 13:51:03','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link AppStore','link_appstore','publish','closed','closed','','field_5d2f2772dcd08','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=128',8,'acf-field','',0),(129,1,'2019-07-17 13:51:03','2019-07-17 13:51:03','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link PlayStore','link_playstore','publish','closed','closed','','field_5d2f277fdcd09','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=129',9,'acf-field','',0),(130,1,'2019-07-17 14:08:15','2019-07-17 14:08:15','a:8:{s:4:\"type\";s:7:\"message\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Discover Ship','discover_ship','publish','closed','closed','','field_5d2f2b444d071','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=130',11,'acf-field','',0),(131,1,'2019-07-17 14:08:15','2019-07-17 14:08:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Discover Ship Title','discover_ship_title','publish','closed','closed','','field_5d2f2b854d072','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=131',12,'acf-field','',0),(132,1,'2019-07-17 14:08:15','2019-07-17 14:08:15','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Discover Ship Link','discover_ship_link','publish','closed','closed','','field_5d2f2ba44d073','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=132',14,'acf-field','',0),(133,1,'2019-07-17 14:08:16','2019-07-17 14:08:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:2:\"id\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Featured Ship Photo (1402x801px)','discover_ship_photo','publish','closed','closed','','field_5d2f2bbc4d075','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=133',15,'acf-field','',0),(134,1,'2019-07-17 14:09:17','2019-07-17 14:09:17','','ship-cover','','inherit','open','closed','','ship-cover-2','','','2019-07-18 16:42:23','2019-07-18 16:42:23','',108,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/ship-cover-1.jpg',0,'attachment','image/jpeg',0),(135,1,'2019-07-17 14:11:52','2019-07-17 14:11:52','a:18:{s:4:\"type\";s:7:\"gallery\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:6:\"insert\";s:6:\"append\";s:7:\"library\";s:3:\"all\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Gallery','gallery','publish','closed','closed','','field_5d2f2c89081ed','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://localhost/royal-caribbean-digital/web/?post_type=acf-field&#038;p=135',16,'acf-field','',0),(136,1,'2019-07-17 14:12:31','2019-07-17 14:12:31','','placeholder','','inherit','open','closed','','placeholder','','','2019-07-18 17:32:34','2019-07-18 17:32:34','',108,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/placeholder.jpg',0,'attachment','image/jpeg',0),(137,1,'2019-07-17 14:12:32','2019-07-17 14:12:32','','placeholder-2','','inherit','open','closed','','placeholder-2','','','2019-07-18 17:32:39','2019-07-18 17:32:39','',108,'http://localhost/royal-caribbean-digital/web/app/uploads/2019/07/placeholder-2.jpg',0,'attachment','image/jpeg',0),(138,1,'2019-07-18 16:32:12','2019-07-18 16:32:12','','Equinox','','inherit','closed','closed','','113-autosave-v1','','','2019-07-18 16:32:12','2019-07-18 16:32:12','',113,'http://royaldigital.labcp.co/113-autosave-v1/',0,'revision','',0),(139,1,'2019-07-18 16:43:15','2019-07-18 16:43:15','','Edge','','publish','closed','closed','','edge','','','2019-09-20 16:24:19','2019-09-20 16:24:19','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=139',0,'ships','',0),(140,1,'2019-07-18 16:43:14','2019-07-18 16:43:14','','Millenium','','publish','closed','closed','','millenium','','','2019-09-10 19:23:04','2019-09-10 19:23:04','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=140',0,'ships','',0),(141,1,'2019-07-18 16:43:16','2019-07-18 16:43:16','','Reflection','','publish','closed','closed','','reflection','','','2019-09-10 19:25:17','2019-09-10 19:25:17','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=141',0,'ships','',0),(142,1,'2019-07-18 16:40:12','2019-07-18 16:40:12','','Constellation','','inherit','closed','closed','','108-autosave-v1','','','2019-07-18 16:40:12','2019-07-18 16:40:12','',108,'http://royaldigital.labcp.co/108-autosave-v1/',0,'revision','',0),(143,1,'2019-07-18 16:50:08','2019-07-18 16:50:08','','Azamara','','publish','closed','closed','','azamara','','','2019-09-09 18:26:32','2019-09-09 18:26:32','',0,'http://royaldigital.labcp.co/?post_type=brands&#038;p=143',0,'brands','',0),(144,1,'2019-07-18 16:51:19','2019-07-18 16:51:19','','Royal Caribbean International','','publish','closed','closed','','royal-caribbean','','','2019-10-14 13:25:43','2019-10-14 13:25:43','',0,'http://royaldigital.labcp.co/?post_type=brands&#038;p=144',0,'brands','',0),(145,1,'2019-07-18 16:54:26','2019-07-18 16:54:26','','Royal Caribbean International','','publish','closed','closed','','145','','','2019-07-29 19:29:05','2019-07-29 19:29:05','',0,'http://royaldigital.labcp.co/?p=145',1,'nav_menu_item','',0),(146,1,'2019-07-18 16:54:26','2019-07-18 16:54:26',' ','','','publish','closed','closed','','146','','','2019-07-29 19:29:05','2019-07-29 19:29:05','',0,'http://royaldigital.labcp.co/?p=146',3,'nav_menu_item','',0),(147,1,'2019-07-18 17:05:16','2019-07-18 17:05:16','','Azamara Pursuit','','publish','closed','closed','','pursuit','','','2019-09-10 20:18:56','2019-09-10 20:18:56','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=147',0,'ships','',0),(148,1,'2019-07-18 17:14:49','2019-07-18 17:14:49','','Allure of the Seas','','publish','closed','closed','','allure','','','2019-09-19 20:41:50','2019-09-19 20:41:50','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=148',0,'ships','',0),(149,1,'2019-07-18 17:14:52','2019-07-18 17:14:52','','Symphony of the Seas','','publish','closed','closed','','symphony','','','2019-09-09 13:00:31','2019-09-09 13:00:31','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=149',0,'ships','',0),(150,1,'2019-07-18 17:14:54','2019-07-18 17:14:54','','Oasis of the Seas','','publish','closed','closed','','oasis','','','2019-09-09 13:00:27','2019-09-09 13:00:27','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=150',0,'ships','',0),(151,1,'2019-07-18 17:14:56','2019-07-18 17:14:56','','Enchantment of the Seas','','publish','closed','closed','','enchantment','','','2019-09-09 13:00:22','2019-09-09 13:00:22','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=151',0,'ships','',0),(152,1,'2019-07-18 17:14:57','2019-07-18 17:14:57','','Serenade of the Seas','','publish','closed','closed','','serenade','','','2019-09-19 20:40:54','2019-09-19 20:40:54','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=152',0,'ships','',0),(153,1,'2019-07-18 17:14:47','2019-07-18 17:14:47','','Mariner of the Seas','','publish','closed','closed','','mariner','','','2019-09-19 20:41:38','2019-09-19 20:41:38','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=153',0,'ships','',0),(154,1,'2019-07-18 17:31:14','2019-07-18 17:31:14','','Independence of the Seas','','publish','closed','closed','','independence','','','2019-09-09 13:00:15','2019-09-09 13:00:15','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=154',0,'ships','',0),(155,1,'2019-07-18 17:33:38','2019-07-18 17:33:38','','Adventure of the Seas','','publish','closed','closed','','adventure','','','2019-09-13 18:52:47','2019-09-13 18:52:47','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=155',0,'ships','',0),(156,1,'2019-07-18 17:33:42','2019-07-18 17:33:42','','Brilliance of the Seas','','publish','closed','closed','','brilliance','','','2019-09-19 20:41:28','2019-09-19 20:41:28','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=156',0,'ships','',0),(157,1,'2019-07-18 17:34:13','2019-07-18 17:34:13','','Majesty of the Seas','','publish','closed','closed','','majesty','','','2019-09-19 20:40:43','2019-09-19 20:40:43','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=157',0,'ships','',0),(158,1,'2019-07-18 17:34:20','2019-07-18 17:34:20','','Harmony of the Seas','','publish','closed','closed','','harmony','','','2019-09-09 12:59:53','2019-09-09 12:59:53','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=158',0,'ships','',0),(159,1,'2019-07-18 17:34:28','2019-07-18 17:34:28','','Liberty of the Seas','','publish','closed','closed','','liberty','','','2019-09-13 18:57:22','2019-09-13 18:57:22','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=159',0,'ships','',0),(160,1,'2019-07-18 17:35:05','2019-07-18 17:35:05','','Vision of the Seas','','publish','closed','closed','','vision','','','2019-09-19 17:32:25','2019-09-19 17:32:25','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=160',0,'ships','',0),(161,1,'2019-07-18 17:35:10','2019-07-18 17:35:10','','Navigator of the Seas','','publish','closed','closed','','navigator','','','2019-09-13 18:55:04','2019-09-13 18:55:04','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=161',0,'ships','',0),(162,1,'2019-07-18 17:35:19','2019-07-18 17:35:19','','Spectrum of the Seas','','publish','closed','closed','','spectrum','','','2019-09-09 12:59:36','2019-09-09 12:59:36','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=162',0,'ships','',0),(164,1,'2019-07-18 18:37:50','2019-07-18 18:37:50','<div class=\"c-form__group\">\r\n	<label class=\"c-form__label\">Full Name</label>\r\n[text* fullname class:c-form__control placeholder\"James Franco\"]\r\n</div>\r\n<div class=\"c-form__group\">\r\n	<label class=\"c-form__label\">Email Address</label>\r\n[email* email class:c-form__control placeholder\"jfranco@company.com\"]\r\n</div>\r\n<div class=\"c-form__group\">\r\n	<label class=\"c-form__label\">Message</label>\r\n[textarea message class:c-form__control class:is-textarea placeholder\"Write something…\"]\r\n</div>\r\n<button id=\'submit\' class=\'wpcf7-form-control wpcf7-submit c-btn-icon is-light mt-1 mt-lg-0\'>Submit <i class=\"icon icon-go\"></i></button>\n1\nRoyal Caribbean Digital - Contact\nRoyal Caribbean Digital <wordpress@royaldigital.labcp.co>\nappfeedback@rccl.com\nFrom: [fullname] <[email]>\r\n\r\nMessage Body:\r\n[message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Royal Caribbean Digital\nReply-To: [email]\n\n\n\n\nRoyal Caribbean Digital \"[your-subject]\"\nRoyal Caribbean Digital <wordpress@royaldigital.labcp.co>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Royal Caribbean Digital (http://royaldigital.labcp.co)\nReply-To: dev@cappen.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact','','publish','closed','closed','','contact','','','2019-09-20 12:08:16','2019-09-20 12:08:16','',0,'http://royaldigital.labcp.co/?post_type=wpcf7_contact_form&#038;p=164',0,'wpcf7_contact_form','',0),(166,1,'2019-07-18 19:02:40','2019-07-18 19:02:40','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:2:{i:0;s:10:\"discussion\";i:1;s:8:\"comments\";}s:11:\"description\";s:0:\"\";}','News','news','publish','open','open','','group_5d3083e5df416','','','2019-07-18 19:02:40','2019-07-18 19:02:40','',0,'http://royaldigital.labcp.co/?p=166',0,'acf-field-group','',0),(167,1,'2019-07-18 19:02:40','2019-07-18 19:02:40','a:9:{s:4:\"type\";s:4:\"user\";s:12:\"instructions\";s:31:\"Select the author for this news\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"role\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:13:\"return_format\";s:5:\"array\";}','Author','author_news','publish','closed','closed','','field_5d3083fbbea51','','','2019-07-18 19:02:40','2019-07-18 19:02:40','',166,'http://royaldigital.labcp.co/?post_type=acf-field&p=167',0,'acf-field','',0),(168,1,'2019-07-18 19:02:40','2019-07-18 19:02:40','a:11:{s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:6:\"brands\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:13:\"return_format\";s:6:\"object\";s:2:\"ui\";i:1;}','Select Brand','select_brand','publish','closed','closed','','field_5d3084d736561','','','2019-07-18 19:02:40','2019-07-18 19:02:40','',166,'http://royaldigital.labcp.co/?post_type=acf-field&p=168',1,'acf-field','',0),(169,1,'2019-07-18 19:02:40','2019-07-18 19:02:40','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:23:\"Select as Featured Post\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Featured Post','featured_post','publish','closed','closed','','field_5d30852c7c4e7','','','2019-07-18 19:02:40','2019-07-18 19:02:40','',166,'http://royaldigital.labcp.co/?post_type=acf-field&p=169',2,'acf-field','',0),(171,1,'2019-07-19 17:22:44','2019-07-19 17:22:44','','enchantement_s','','inherit','open','closed','','enchantement_s','','','2019-07-19 17:22:44','2019-07-19 17:22:44','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/enchantement_s.png',0,'attachment','image/png',0),(172,1,'2019-07-19 17:22:57','2019-07-19 17:22:57','','enchantement_b','','inherit','open','closed','','enchantement_b','','','2019-07-19 17:22:57','2019-07-19 17:22:57','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/enchantement_b.png',0,'attachment','image/png',0),(173,1,'2019-07-19 17:23:12','2019-07-19 17:23:12','','brilliance_s','','inherit','open','closed','','brilliance_s','','','2019-07-19 17:23:12','2019-07-19 17:23:12','',156,'http://royaldigital.labcp.co/app/uploads/2019/07/brilliance_s.png',0,'attachment','image/png',0),(174,1,'2019-07-19 17:23:13','2019-07-19 17:23:13','','brilliance_b','','inherit','open','closed','','brilliance_b','','','2019-07-19 17:23:13','2019-07-19 17:23:13','',156,'http://royaldigital.labcp.co/app/uploads/2019/07/brilliance_b.png',0,'attachment','image/png',0),(175,1,'2019-07-19 17:23:40','2019-07-19 17:23:40','','oasis_b','','inherit','open','closed','','oasis_b','','','2019-07-19 17:23:40','2019-07-19 17:23:40','',150,'http://royaldigital.labcp.co/app/uploads/2019/07/oasis_b.png',0,'attachment','image/png',0),(176,1,'2019-07-19 17:23:42','2019-07-19 17:23:42','','oasis_s','','inherit','open','closed','','oasis_s','','','2019-07-19 17:23:42','2019-07-19 17:23:42','',150,'http://royaldigital.labcp.co/app/uploads/2019/07/oasis_s.png',0,'attachment','image/png',0),(177,1,'2019-07-19 17:23:59','2019-07-19 17:23:59','','adventure_s','','inherit','open','closed','','adventure_s','','','2019-07-19 17:23:59','2019-07-19 17:23:59','',155,'http://royaldigital.labcp.co/app/uploads/2019/07/adventure_s.png',0,'attachment','image/png',0),(178,1,'2019-07-19 17:24:00','2019-07-19 17:24:00','','adventure_b','','inherit','open','closed','','adventure_b','','','2019-07-19 17:24:00','2019-07-19 17:24:00','',155,'http://royaldigital.labcp.co/app/uploads/2019/07/adventure_b.png',0,'attachment','image/png',0),(179,1,'2019-07-19 17:30:16','2019-07-19 17:30:16','','navigation_b','','inherit','open','closed','','navigation_b','','','2019-07-19 17:30:16','2019-07-19 17:30:16','',161,'http://royaldigital.labcp.co/app/uploads/2019/07/navigation_b.png',0,'attachment','image/png',0),(180,1,'2019-07-19 17:30:18','2019-07-19 17:30:18','','navigation_s','','inherit','open','closed','','navigation_s','','','2019-07-19 17:30:18','2019-07-19 17:30:18','',161,'http://royaldigital.labcp.co/app/uploads/2019/07/navigation_s.png',0,'attachment','image/png',0),(181,1,'2019-07-19 17:30:26','2019-07-19 17:30:26','','vision_b','','inherit','open','closed','','vision_b','','','2019-07-19 17:30:26','2019-07-19 17:30:26','',160,'http://royaldigital.labcp.co/app/uploads/2019/07/vision_b.png',0,'attachment','image/png',0),(182,1,'2019-07-19 17:30:27','2019-07-19 17:30:27','','vision_s','','inherit','open','closed','','vision_s','','','2019-07-19 17:30:27','2019-07-19 17:30:27','',160,'http://royaldigital.labcp.co/app/uploads/2019/07/vision_s.png',0,'attachment','image/png',0),(184,1,'2019-07-19 17:30:33','2019-07-19 17:30:33','','Spectrum_s','','inherit','open','closed','','spectrum_s','','','2019-07-19 17:30:33','2019-07-19 17:30:33','',162,'http://royaldigital.labcp.co/app/uploads/2019/07/Spectrum_s.png',0,'attachment','image/png',0),(185,1,'2019-07-19 17:34:29','2019-07-19 17:34:29','','harmony_s','','inherit','open','closed','','harmony_s','','','2019-07-19 17:34:29','2019-07-19 17:34:29','',158,'http://royaldigital.labcp.co/app/uploads/2019/07/harmony_s.png',0,'attachment','image/png',0),(186,1,'2019-07-19 17:34:31','2019-07-19 17:34:31','','harmony_b','','inherit','open','closed','','harmony_b','','','2019-07-19 17:34:31','2019-07-19 17:34:31','',158,'http://royaldigital.labcp.co/app/uploads/2019/07/harmony_b.png',0,'attachment','image/png',0),(187,1,'2019-07-19 17:43:32','2019-07-19 17:43:32','','liberty_s','','inherit','open','closed','','liberty_s','','','2019-07-19 17:43:32','2019-07-19 17:43:32','',159,'http://royaldigital.labcp.co/app/uploads/2019/07/liberty_s.png',0,'attachment','image/png',0),(188,1,'2019-07-19 17:43:34','2019-07-19 17:43:34','','liberty_b','','inherit','open','closed','','liberty_b','','','2019-07-19 17:43:34','2019-07-19 17:43:34','',159,'http://royaldigital.labcp.co/app/uploads/2019/07/liberty_b.png',0,'attachment','image/png',0),(189,1,'2019-07-19 17:43:49','2019-07-19 17:43:49','','majesty_b','','inherit','open','closed','','majesty_b','','','2019-07-19 17:43:49','2019-07-19 17:43:49','',157,'http://royaldigital.labcp.co/app/uploads/2019/07/majesty_b.png',0,'attachment','image/png',0),(190,1,'2019-07-19 17:43:51','2019-07-19 17:43:51','','majesty_s','','inherit','open','closed','','majesty_s','','','2019-07-19 17:43:51','2019-07-19 17:43:51','',157,'http://royaldigital.labcp.co/app/uploads/2019/07/majesty_s.png',0,'attachment','image/png',0),(191,1,'2019-07-19 17:46:31','2019-07-19 17:46:31','','Independence_b','','inherit','open','closed','','independence_b','','','2019-07-19 17:46:31','2019-07-19 17:46:31','',154,'http://royaldigital.labcp.co/app/uploads/2019/07/Independence_b.png',0,'attachment','image/png',0),(192,1,'2019-07-19 17:46:33','2019-07-19 17:46:33','','Independence_s','','inherit','open','closed','','independence_s','','','2019-07-19 17:46:33','2019-07-19 17:46:33','',154,'http://royaldigital.labcp.co/app/uploads/2019/07/Independence_s.png',0,'attachment','image/png',0),(193,1,'2019-07-19 17:47:41','2019-07-19 17:47:41','','Serenade_s','','inherit','open','closed','','serenade_s','','','2019-07-19 17:47:41','2019-07-19 17:47:41','',152,'http://royaldigital.labcp.co/app/uploads/2019/07/Serenade_s.png',0,'attachment','image/png',0),(194,1,'2019-07-19 17:47:45','2019-07-19 17:47:45','','Serenade_b','','inherit','open','closed','','serenade_b','','','2019-07-19 17:47:45','2019-07-19 17:47:45','',152,'http://royaldigital.labcp.co/app/uploads/2019/07/Serenade_b.png',0,'attachment','image/png',0),(195,1,'2019-07-19 17:49:31','2019-07-19 17:49:31','','Symphony_b','','inherit','open','closed','','symphony_b','','','2019-07-19 17:49:31','2019-07-19 17:49:31','',149,'http://royaldigital.labcp.co/app/uploads/2019/07/Symphony_b.png',0,'attachment','image/png',0),(196,1,'2019-07-19 17:49:33','2019-07-19 17:49:33','','Symphony_s','','inherit','open','closed','','symphony_s','','','2019-07-19 17:49:33','2019-07-19 17:49:33','',149,'http://royaldigital.labcp.co/app/uploads/2019/07/Symphony_s.png',0,'attachment','image/png',0),(197,1,'2019-07-19 18:08:15','2019-07-19 18:08:15','','allure_b','','inherit','open','closed','','allure_b','','','2019-07-19 18:08:15','2019-07-19 18:08:15','',148,'http://royaldigital.labcp.co/app/uploads/2019/07/allure_b.png',0,'attachment','image/png',0),(198,1,'2019-07-19 18:08:16','2019-07-19 18:08:16','','allure_s','','inherit','open','closed','','allure_s','','','2019-07-19 18:08:16','2019-07-19 18:08:16','',148,'http://royaldigital.labcp.co/app/uploads/2019/07/allure_s.png',0,'attachment','image/png',0),(199,1,'2019-07-19 18:10:08','2019-07-19 18:10:08','','mariner_s','','inherit','open','closed','','mariner_s','','','2019-07-19 18:10:08','2019-07-19 18:10:08','',153,'http://royaldigital.labcp.co/app/uploads/2019/07/mariner_s.png',0,'attachment','image/png',0),(200,1,'2019-07-19 18:10:10','2019-07-19 18:10:10','','mariner_b','','inherit','open','closed','','mariner_b','','','2019-07-19 18:10:10','2019-07-19 18:10:10','',153,'http://royaldigital.labcp.co/app/uploads/2019/07/mariner_b.png',0,'attachment','image/png',0),(201,1,'2019-07-22 20:45:13','2019-07-22 20:45:13','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-22 20:45:13','2019-07-22 20:45:13','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(203,1,'2019-07-23 14:27:23','2019-07-23 14:27:23','','Blog/Press','','publish','closed','closed','','blog-press','','','2019-07-23 14:27:23','2019-07-23 14:27:23','',0,'http://royaldigital.labcp.co/?page_id=203',0,'page','',0),(204,1,'2019-07-23 14:27:23','2019-07-23 14:27:23','','Blog/Press','','inherit','closed','closed','','203-revision-v1','','','2019-07-23 14:27:23','2019-07-23 14:27:23','',203,'http://royaldigital.labcp.co/203-revision-v1/',0,'revision','',0),(205,1,'2019-07-23 14:28:06','2019-07-23 14:28:06',' ','','','publish','closed','closed','','205','','','2019-08-30 21:25:20','2019-08-30 21:25:20','',0,'http://royaldigital.labcp.co/?p=205',1,'nav_menu_item','',0),(206,1,'2019-07-24 21:43:34','2019-07-24 21:43:34','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-07-24 21:43:34','2019-07-24 21:43:34','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(207,1,'2019-07-26 13:28:08','2019-07-26 13:28:08','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"standard\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','News content','news-content','publish','closed','closed','','group_5d39e9c4768fd','','','2019-09-13 14:12:57','2019-09-13 14:12:57','',0,'http://royaldigital.labcp.co/?p=207',0,'acf-field-group','',0),(208,1,'2019-07-26 13:28:08','2019-07-26 13:28:08','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Legend Featured Image','legend_featured_image','publish','closed','closed','','field_5d39e9d4ef8f8','','','2019-09-13 13:58:15','2019-09-13 13:58:15','',207,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=208',1,'acf-field','',0),(209,1,'2019-07-26 13:28:08','2019-07-26 13:28:08','a:11:{s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:26:\"Select Three Related Posts\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:4:\"post\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:1;s:13:\"return_format\";s:6:\"object\";s:2:\"ui\";i:1;}','Select posts related','select_posts_related','publish','closed','closed','','field_5d3afdcff5db7','','','2019-09-13 13:58:15','2019-09-13 13:58:15','',207,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=209',2,'acf-field','',0),(212,1,'2019-07-31 13:01:10','2019-07-31 13:01:10','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email AppFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Download and use our app at no cost','','publish','open','open','','post-test-title','','','2019-09-23 21:13:42','2019-09-23 21:13:42','',0,'http://royaldigital.labcp.co/?p=212',0,'post','',0),(213,1,'2019-07-31 13:01:10','2019-07-31 13:01:10','<!-- wp:heading {\"level\":4} -->\n<h4>Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:01:10','2019-07-31 13:01:10','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(214,1,'2019-07-31 13:01:10','2019-07-31 13:01:10','<!-- wp:heading {\"level\":4} -->\n<h4>Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:01:10','2019-07-31 13:01:10','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(215,1,'2019-07-31 13:01:45','2019-07-31 13:01:45','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:01:45','2019-07-31 13:01:45','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(216,1,'2019-07-31 13:01:45','2019-07-31 13:01:45','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:01:45','2019-07-31 13:01:45','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(217,1,'2019-07-31 13:02:15','2019-07-31 13:02:15','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:02:15','2019-07-31 13:02:15','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(218,1,'2019-07-31 13:05:55','2019-07-31 13:05:55','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:05:55','2019-07-31 13:05:55','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(219,1,'2019-07-31 13:05:56','2019-07-31 13:05:56','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:05:56','2019-07-31 13:05:56','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(220,1,'2019-07-31 13:06:00','2019-07-31 13:06:00','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:06:00','2019-07-31 13:06:00','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(221,1,'2019-07-31 13:06:19','2019-07-31 13:06:19','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:06:19','2019-07-31 13:06:19','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(222,1,'2019-07-31 13:06:19','2019-07-31 13:06:19','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-07-31 13:06:19','2019-07-31 13:06:19','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(233,1,'2019-08-06 14:07:13','2019-08-06 14:07:13','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"video\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','News Content Vídeo','news-content-video','publish','closed','closed','','group_5d498960e8ae0','','','2019-09-13 14:14:46','2019-09-13 14:14:46','',0,'http://royaldigital.labcp.co/?post_type=acf-field-group&#038;p=233',0,'acf-field-group','',0),(234,1,'2019-08-06 14:07:13','2019-08-06 14:07:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','ID Video','id_video','publish','closed','closed','','field_5d49897521f43','','','2019-08-12 20:11:23','2019-08-12 20:11:23','',233,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=234',0,'acf-field','',0),(235,1,'2019-08-06 14:09:12','2019-08-06 14:09:12','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"audio\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','News Content Áudio','news-content-audio','publish','closed','closed','','group_5d498997ec619','','','2019-09-13 14:14:28','2019-09-13 14:14:28','',0,'http://royaldigital.labcp.co/?post_type=acf-field-group&#038;p=235',0,'acf-field-group','',0),(236,1,'2019-08-06 14:09:12','2019-08-06 14:09:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Id áudio Sound Cloud','id_audio_sound_cloud','publish','closed','closed','','field_5d4989a80007c','','','2019-09-02 21:19:07','2019-09-02 21:19:07','',235,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=236',0,'acf-field','',0),(248,2,'2019-08-07 16:34:56','2019-08-07 16:34:56','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":247} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-07-23-at-11.46.02-AM.png\" alt=\"\" class=\"wp-image-247\"/></figure>\n<!-- /wp:image -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 16:34:56','2019-08-07 16:34:56','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(250,2,'2019-08-07 16:36:33','2019-08-07 16:36:33','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77]} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":247,\"align\":\"center\",\"width\":506,\"height\":444} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-07-23-at-11.46.02-AM.png\" alt=\"\" class=\"wp-image-247\" width=\"506\" height=\"444\"/><figcaption>1232</figcaption></figure></div>\n<!-- /wp:image -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 16:36:33','2019-08-07 16:36:33','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(252,2,'2019-08-07 16:38:17','2019-08-07 16:38:17','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77],\"align\":\"center\"} -->\n<ul class=\"wp-block-gallery aligncenter columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":247,\"align\":\"center\",\"width\":506,\"height\":444} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-07-23-at-11.46.02-AM.png\" alt=\"\" class=\"wp-image-247\" width=\"506\" height=\"444\"/><figcaption>1232</figcaption></figure></div>\n<!-- /wp:image -->','Post Test Title','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 16:38:17','2019-08-07 16:38:17','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(254,2,'2019-08-07 16:38:54','2019-08-07 16:38:54','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sed pulvinar risus. Integer at nibh nulla. Praesent id arcu vulputate, iaculis erat non, molestie leo. Duis ornare nec magna tincidunt tristique. Sed consequat finibus ante. Nunc ac placerat purus. Curabitur luctus turpis fringilla urna aliquet, volutpat sagittis diam iaculis. Proin dapibus nibh at risus imperdiet, pulvinar rhoncus quam volutpat. Vestibulum consequat lacinia lacus vitae faucibus. Nunc posuere volutpat ipsum sit amet tristique. In sed posuere lacus, nec posuere magna. Curabitur finibus condimentum blandit. Vestibulum scelerisque risus at tortor lacinia, eu pellentesque leo aliquam. Sed dignissim ante diam, vel interdum metus semper in. Nulla quis venenatis est, eget varius leo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[77],\"align\":\"center\"} -->\n<ul class=\"wp-block-gallery aligncenter columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/kitchen-1024x643.jpg\" alt=\"\" data-id=\"77\" data-link=\"http://royaldigital.labcp.co/home/kitchen/\" class=\"wp-image-77\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Nullam convallis porta eros, tempor dictum arcu convallis ac. Proin elit est, tincidunt a nibh sed, vestibulum vulputate magna. Praesent nisl justo, luctus ac hendrerit sit amet, iaculis quis metus. Nullam accumsan magna tortor, sed hendrerit neque dapibus eget. Cras blandit congue dui, eget aliquet velit viverra a. Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget. Quisque laoreet blandit neque, vel gravida odio maximus in. Pellentesque tristique malesuada ante in tempor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[137,134,136]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder-2.jpg\" alt=\"\" data-id=\"137\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder-2/\" class=\"wp-image-137\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ship-cover-1-1024x796.jpg\" alt=\"\" data-id=\"134\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/ship-cover-2/\" class=\"wp-image-134\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/placeholder.jpg\" alt=\"\" data-id=\"136\" data-link=\"http://royaldigital.labcp.co/ships/our-fleet/placeholder/\" class=\"wp-image-136\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Aliquam erat volutpat. Duis euismod ante turpis, in feugiat leo molestie et. Fusce auctor ligula at nisi commodo rutrum. Maecenas porta consequat elit eget vehicula. Donec convallis posuere sollicitudin. Nulla facilisi. Vivamus malesuada erat a est efficitur, id porttitor elit iaculis. Fusce nunc urna, commodo sit amet sodales eget, venenatis eget odio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aenean id lacinia diam. Cras eget dui nec arcu faucibus luctus. In a condimentum quam, ut molestie tellus. Praesent fermentum tempor eros, eu varius mi sollicitudin in. Nullam eleifend sem neque, condimentum mollis lorem euismod et. Donec varius tempus erat, eget suscipit lectus lobortis eu. Pellentesque accumsan nunc sit amet posuere semper. Etiam eleifend vel ligula ac suscipit. Maecenas accumsan magna id arcu vehicula sollicitudin. Vivamus est enim, faucibus tempus dictum nec, tincidunt at augue. Vivamus imperdiet mi ut pharetra sodales. Phasellus in maximus risus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":247,\"align\":\"center\",\"width\":506,\"height\":444} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-07-23-at-11.46.02-AM.png\" alt=\"\" class=\"wp-image-247\" width=\"506\" height=\"444\"/><figcaption>1232</figcaption></figure></div>\n<!-- /wp:image -->','Round 1 Test','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 16:38:54','2019-08-07 16:38:54','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(256,2,'2019-08-07 17:31:50','2019-08-07 17:31:50','<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account <br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Royal Caribbean App: What is it?','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 17:31:50','2019-08-07 17:31:50','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(258,2,'2019-08-07 17:33:08','2019-08-07 17:33:08','<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Royal Caribbean App: What is it?','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 17:33:08','2019-08-07 17:33:08','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(259,2,'2019-08-07 17:33:44','2019-08-07 17:33:44','<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 17:33:44','2019-08-07 17:33:44','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(264,1,'2019-08-07 19:05:32','2019-08-07 19:05:32','<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 19:05:32','2019-08-07 19:05:32','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(269,2,'2019-08-07 19:23:18','2019-08-07 19:23:18','<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-07 19:23:18','2019-08-07 19:23:18','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(271,1,'2019-08-07 19:33:26','2019-08-07 19:33:26','','Help & FAQ’s','','publish','closed','closed','','help-faqs','','','2019-09-13 15:33:27','2019-09-13 15:33:27','',0,'http://royaldigital.labcp.co/?page_id=271',0,'page','',0),(272,1,'2019-08-07 19:33:26','2019-08-07 19:33:26','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-07 19:33:26','2019-08-07 19:33:26','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(274,1,'2019-08-07 19:46:41','2019-08-07 19:46:41','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"faq\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:2:{i:0;s:10:\"discussion\";i:1;s:8:\"comments\";}s:11:\"description\";s:0:\"\";}','FAQ','faq','publish','closed','closed','','group_5d4b2aa112ff3','','','2019-08-15 20:12:00','2019-08-15 20:12:00','',0,'http://royaldigital.labcp.co/?p=274',0,'acf-field-group','',0),(275,1,'2019-08-07 19:46:41','2019-08-07 19:46:41','a:9:{s:4:\"type\";s:4:\"user\";s:12:\"instructions\";s:31:\"Select the author for this news\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"role\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:13:\"return_format\";s:5:\"array\";}','Author','author_news','publish','closed','closed','','field_5d4b2aa11701b','','','2019-08-07 19:46:41','2019-08-07 19:46:41','',274,'http://royaldigital.labcp.co/?post_type=acf-field&p=275',0,'acf-field','',0),(278,1,'2019-08-07 19:48:51','2019-08-07 19:48:51','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"standard\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"faq\";}}}s:8:\"position\";s:15:\"acf_after_title\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:8:{i:0;s:11:\"the_content\";i:1;s:7:\"excerpt\";i:2;s:10:\"discussion\";i:3;s:8:\"comments\";i:4;s:9:\"revisions\";i:5;s:4:\"slug\";i:6;s:15:\"page_attributes\";i:7;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','FAQ content','faq-content','publish','closed','closed','','group_5d4b2b2397797','','','2019-10-14 17:09:52','2019-10-14 17:09:52','',0,'http://royaldigital.labcp.co/?p=278',0,'acf-field-group','',0),(279,1,'2019-08-07 19:48:51','2019-08-07 19:48:51','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','URL video featured','url_video_featured','publish','closed','closed','','field_5d4b2b239e718','','','2019-10-14 16:58:22','2019-10-14 16:58:22','',278,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=279',1,'acf-field','',0),(280,1,'2019-08-07 19:48:51','2019-08-07 19:48:51','a:11:{s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:26:\"Select Three Related Posts\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:3:\"faq\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:1;s:13:\"return_format\";s:6:\"object\";s:2:\"ui\";i:1;}','Select posts related','select_posts_related','publish','closed','closed','','field_5d4b2b239e75e','','','2019-10-14 16:58:22','2019-10-14 16:58:22','',278,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=280',3,'acf-field','',0),(285,1,'2019-08-08 13:45:12','2019-08-08 13:45:12','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Content faq','content_faq','publish','closed','closed','','field_5d4c26b63bd77','','','2019-10-14 17:09:52','2019-10-14 17:09:52','',278,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=285',2,'acf-field','',0),(286,1,'2019-08-08 13:45:12','2019-08-08 13:45:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image featured row (330px x auto)','image_featured_row','publish','closed','closed','','field_5d4c26e83bd78','','','2019-08-08 14:26:15','2019-08-08 14:26:15','',285,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=286',0,'acf-field','',0),(287,1,'2019-08-08 13:45:12','2019-08-08 13:45:12','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Text row content','text_row_content','publish','closed','closed','','field_5d4c272f3bd79','','','2019-08-08 13:45:12','2019-08-08 13:45:12','',285,'http://royaldigital.labcp.co/?post_type=acf-field&p=287',1,'acf-field','',0),(288,1,'2019-08-08 13:50:14','2019-08-08 13:50:14','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:31:\"Want to add app download links?\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Download the Royal Caribbean App','download_app_caribbean_digital','publish','closed','closed','','field_5d4c27a0f5de4','','','2019-10-14 16:58:22','2019-10-14 16:58:22','',278,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=288',4,'acf-field','',0),(291,1,'2019-08-08 13:50:14','2019-08-08 13:50:14','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:133:\"Check out our <a href=\"/contact\">Support</a> page for more answers or <a href=\"mailto:appfeedback@rccl.com\">get in touch</a> with us.\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Need more help','need_more_help','publish','closed','closed','','field_5d4c2771f5de3','','','2019-10-14 16:58:22','2019-10-14 16:58:22','',278,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=291',5,'acf-field','',0),(304,2,'2019-08-08 19:03:11','2019-08-08 19:03:11','','checkin','','inherit','open','closed','','checkin','','','2019-08-08 19:03:11','2019-08-08 19:03:11','',162,'http://royaldigital.labcp.co/app/uploads/2019/07/checkin.jpg',0,'attachment','image/jpeg',0),(307,2,'2019-08-08 19:23:24','2019-08-08 19:23:24','','Spectrum','','inherit','open','closed','','spectrum-2','','','2019-08-08 19:24:18','2019-08-08 19:24:18','',162,'http://royaldigital.labcp.co/app/uploads/2019/08/Spectrum.jpg',0,'attachment','image/jpeg',0),(309,2,'2019-08-08 20:00:10','2019-08-08 20:00:10','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-08-08 20:00:10','2019-08-08 20:00:10','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(312,2,'2019-08-09 12:57:00','2019-08-09 12:57:00','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a smile','','publish','open','open','','it-starts-with-a-selfie','','','2019-10-14 13:26:24','2019-10-14 13:26:24','',0,'http://royaldigital.labcp.co/?p=312',0,'post','',0),(313,2,'2019-08-09 12:57:00','2019-08-09 12:57:00','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-09 12:57:00','2019-08-09 12:57:00','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(314,2,'2019-08-09 12:57:00','2019-08-09 12:57:00','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-09 12:57:00','2019-08-09 12:57:00','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(315,1,'2019-08-09 13:18:38','2019-08-09 13:18:38','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:20:\"Browse Edge Sailings\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Discover Ship Text Link','discover_ship_text_link','publish','closed','closed','','field_5d4d727f27026','','','2019-09-02 14:00:56','2019-09-02 14:00:56','',89,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=315',13,'acf-field','',0),(317,2,'2019-08-09 17:30:45','2019-08-09 17:30:45','','Expedited Arrival','','inherit','open','closed','','expedited-arrival','','','2019-08-09 17:30:45','2019-08-09 17:30:45','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Expedited-Arrival.jpg',0,'attachment','image/jpeg',0),(319,2,'2019-08-09 17:31:59','2019-08-09 17:31:59','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-09 17:31:59','2019-08-09 17:31:59','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(321,2,'2019-08-09 18:25:04','2019-08-09 18:25:04','','FamilyExpedited','','inherit','open','closed','','familyexpedited','','','2019-08-12 13:54:34','2019-08-12 13:54:34','',332,'http://royaldigital.labcp.co/app/uploads/2019/08/FamilyExpedited.jpg',0,'attachment','image/jpeg',0),(323,2,'2019-08-09 18:29:53','2019-08-09 18:29:53','','CelebrityStateroomControls','','inherit','open','closed','','celebritystateroomcontrols','','','2019-08-09 18:29:53','2019-08-09 18:29:53','',312,'http://royaldigital.labcp.co/app/uploads/2019/08/CelebrityStateroomControls.jpg',0,'attachment','image/jpeg',0),(325,2,'2019-08-09 18:30:37','2019-08-09 18:30:37','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":323} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CelebrityStateroomControls-1024x523.jpg\" alt=\"\" class=\"wp-image-323\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-09 18:30:37','2019-08-09 18:30:37','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(332,2,'2019-08-19 19:22:37','2019-08-19 19:22:37','','Can I make reservations with the app?','','publish','closed','closed','','can-i-make-reservations-with-the-app','','','2019-09-19 18:16:02','2019-09-19 18:16:02','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=332',0,'faq','',0),(333,2,'2019-08-12 13:58:32','2019-08-12 13:58:32','','Reservations_1 (1)','','inherit','open','closed','','reservations_1-1','','','2019-08-12 13:58:32','2019-08-12 13:58:32','',332,'http://royaldigital.labcp.co/app/uploads/2019/08/Reservations_1-1.jpg',0,'attachment','image/jpeg',0),(334,2,'2019-08-19 19:26:30','2019-08-19 19:26:30','','How do I start using the app?','','publish','closed','closed','','how-do-i-start-using-the-royal-caribbean-app','','','2019-09-19 18:14:39','2019-09-19 18:14:39','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=334',0,'faq','',0),(335,2,'2019-08-19 19:24:56','2019-08-19 19:24:56','','Speed up your boarding with online check-in','','publish','closed','closed','','speed-up-your-boarding-with-online-check-in','','','2019-09-20 15:13:46','2019-09-20 15:13:46','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=335',0,'faq','',0),(336,2,'2019-08-19 19:27:05','2019-08-19 19:27:05','','Start your vacation sooner with Expedited Arrival','','publish','closed','closed','','start-your-vacation-sooner-with-expedited-arrival','','','2019-09-20 19:37:34','2019-09-20 19:37:34','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=336',0,'faq','',0),(337,2,'2019-08-19 19:25:55','2019-08-19 19:25:55','','Everything you need to know about your Guest Account','','publish','closed','closed','','everything-you-need-to-know-about-your-guest-account','','','2019-09-19 18:14:54','2019-09-19 18:14:54','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=337',0,'faq','',0),(343,2,'2019-08-12 19:21:14','2019-08-12 19:21:14','','Check In 2','','inherit','open','closed','','check-in-2','','','2019-08-15 18:01:10','2019-08-15 18:01:10','',391,'http://royaldigital.labcp.co/app/uploads/2019/08/Check-In-2.png',0,'attachment','image/png',0),(344,2,'2019-08-12 19:21:15','2019-08-12 19:21:15','','Download the App 2','','inherit','open','closed','','download-the-app-2','','','2019-08-15 18:02:16','2019-08-15 18:02:16','',337,'http://royaldigital.labcp.co/app/uploads/2019/08/Download-the-App-2.png',0,'attachment','image/png',0),(345,2,'2019-08-12 19:21:17','2019-08-12 19:21:17','','RCL_Ch 2at','','inherit','open','closed','','rcl_ch-2at','','','2019-08-13 17:51:34','2019-08-13 17:51:34','',397,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_Ch-2at.png',0,'attachment','image/png',0),(346,2,'2019-08-12 19:21:18','2019-08-12 19:21:18','','RCL_DigitalKey 2','','inherit','open','closed','','rcl_digitalkey-2','','','2019-08-13 17:23:47','2019-08-13 17:23:47','',394,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_DigitalKey-2.png',0,'attachment','image/png',0),(348,2,'2019-08-12 19:21:21','2019-08-12 19:21:21','','RCL_StateroomControls 2','','inherit','open','closed','','rcl_stateroomcontrols-2','','','2019-08-13 17:36:07','2019-08-13 17:36:07','',396,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_StateroomControls-2.png',0,'attachment','image/png',0),(349,2,'2019-08-12 19:21:23','2019-08-12 19:21:23','','RCL_XRay_Vision 2','','inherit','open','closed','','rcl_xray_vision-2','','','2019-08-19 15:23:02','2019-08-19 15:23:02','',150,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_XRay_Vision-2.png',0,'attachment','image/png',0),(351,2,'2019-08-12 19:21:25','2019-08-12 19:21:25','','Reservations_2 (2)','','inherit','open','closed','','reservations_2-2','','','2019-08-12 19:21:25','2019-08-12 19:21:25','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Reservations_2-2.png',0,'attachment','image/png',0),(352,2,'2019-08-12 19:21:27','2019-08-12 19:21:27','','Reservations_3 3','','inherit','open','closed','','reservations_3-3','','','2019-08-12 19:21:27','2019-08-12 19:21:27','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Reservations_3-3.png',0,'attachment','image/png',0),(353,1,'2019-08-12 19:22:30','2019-08-12 19:22:30','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"video\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"faq\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','FAQ Content Vídeo','faq-content-video','publish','open','open','','group_5d51bc7677a0c','','','2019-08-12 20:11:01','2019-08-12 20:11:01','',0,'http://royaldigital.labcp.co/?p=353',0,'acf-field-group','',0),(354,1,'2019-08-12 19:22:30','2019-08-12 19:22:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','ID Video','id_video','publish','closed','closed','','field_5d51bc767da39','','','2019-08-12 20:11:01','2019-08-12 20:11:01','',353,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=354',1,'acf-field','',0),(355,1,'2019-08-12 19:24:47','2019-08-12 19:24:47','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Content Video','content_video','publish','closed','closed','','field_5d51bccfb1bc9','','','2019-08-12 19:24:53','2019-08-12 19:24:53','',353,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=355',0,'acf-field','',0),(356,2,'2019-08-12 19:25:19','2019-08-12 19:25:19','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":348} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/RCL_StateroomControls-2.png\" alt=\"\" class=\"wp-image-348\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-12 19:25:19','2019-08-12 19:25:19','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(358,2,'2019-08-12 19:26:20','2019-08-12 19:26:20','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-12 19:26:20','2019-08-12 19:26:20','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(361,1,'2019-08-12 19:31:18','2019-08-12 19:31:18','','Screen-Shot-2019-08-12-at-3.08','','inherit','open','closed','','screen-shot-2019-08-12-at-3-08','','','2019-09-09 15:27:45','2019-09-09 15:27:45','',17,'http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-08-12-at-3.08.jpg',0,'attachment','image/jpeg',0),(362,2,'2019-08-12 19:32:26','2019-08-12 19:32:26','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','It starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-12 19:32:26','2019-08-12 19:32:26','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(367,1,'2019-08-12 19:52:39','2019-08-12 19:52:39','','Celebrity introduces an innovative new way to experience your cruise.','','publish','closed','closed','','royal-faq-video-type-1','','','2019-09-13 15:32:12','2019-09-13 15:32:12','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=367',0,'faq','',0),(380,1,'2019-08-13 13:47:28','2019-08-13 13:47:28','','Royal Caribbean International\'s App: enjoy your experience to the fullest.','','publish','closed','closed','','royal-faq-video-type-2','','','2019-09-13 15:35:22','2019-09-13 15:35:22','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=380',0,'faq','',0),(381,1,'2019-08-13 13:47:54','2019-08-13 13:47:54','','Expedited Arrival: How does it work?','','publish','closed','closed','','royal-faq-video-type-3','','','2019-09-18 13:24:05','2019-09-18 13:24:05','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=381',0,'faq','',0),(391,2,'2019-08-19 19:23:01','2019-08-19 19:23:01','','Arrival and departure experience: What should I expect?','','publish','closed','closed','','arrival-and-departure-experience','','','2019-09-19 18:15:56','2019-09-19 18:15:56','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=391',0,'faq','',0),(392,2,'2019-08-19 19:21:31','2019-08-19 19:21:31','','Shore Excursion Kiosks','','publish','closed','closed','','shore-excursion-kiosks','','','2019-09-19 18:16:15','2019-09-19 18:16:15','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=392',0,'faq','',0),(393,2,'2019-08-19 19:27:38','2019-08-19 19:27:38','','Track expenses in real time with Onboard Account','','publish','closed','closed','','track-expenses-in-real-time-with-onboard-account','','','2019-09-19 18:14:21','2019-09-19 18:14:21','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=393',0,'faq','',0),(394,2,'2019-08-19 19:23:49','2019-08-19 19:23:49','','Digital Key: Unlocking the future','','publish','closed','closed','','digital-key-unlocking-the-future','','','2019-09-19 18:15:29','2019-09-19 18:15:29','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=394',0,'faq','',0),(395,2,'2019-08-19 19:22:16','2019-08-19 19:22:16','','MY TV: Tune in for an enhanced experience','','publish','closed','closed','','my-tv-tune-in-for-an-enhanced-experience','','','2019-09-19 18:16:09','2019-09-19 18:16:09','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=395',0,'faq','',0),(396,2,'2019-08-19 19:25:26','2019-08-19 19:25:26','','Stateroom Automation: Take command of your technology!','','publish','closed','closed','','stateroom-automation-take-command-of-your-technology','','','2019-09-19 18:15:03','2019-09-19 18:15:03','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=396',0,'faq','',0),(397,2,'2019-08-19 19:21:05','2019-08-19 19:21:05','','Let\'s chat about it','','publish','closed','closed','','lets-chat-about-it','','','2019-09-19 18:16:21','2019-09-19 18:16:21','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=397',0,'faq','',0),(398,2,'2019-08-19 19:23:26','2019-08-19 19:23:26','','Augmented Reality: Prepare to be amazed','','publish','closed','closed','','augmented-reality-prepare-to-be-amazed','','','2019-09-19 18:15:38','2019-09-19 18:15:38','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=398',0,'faq','',0),(399,2,'2019-08-19 19:24:07','2019-08-19 19:24:07','','Edge All Access Tour: Our CEO at your service','','publish','closed','closed','','edge-all-access-tour-our-ceo-at-your-service','','','2020-07-08 18:02:30','2020-07-08 18:02:30','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=399',0,'faq','',0),(403,3,'2019-08-14 14:10:12','2019-08-14 14:10:12','','Add to Calendar','','inherit','open','closed','','add-to-calendar','','','2019-08-14 14:10:12','2019-08-14 14:10:12','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Add-to-Calendar.png',0,'attachment','image/png',0),(406,3,'2019-08-14 14:10:38','2019-08-14 14:10:38','','Discover','','inherit','open','closed','','discover','','','2019-08-14 14:10:38','2019-08-14 14:10:38','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Discover.png',0,'attachment','image/png',0),(407,3,'2019-08-14 14:10:42','2019-08-14 14:10:42','','Download the App','','inherit','open','closed','','download-the-app','','','2019-08-15 18:06:40','2019-08-15 18:06:40','',334,'http://royaldigital.labcp.co/app/uploads/2019/08/Download-the-App.png',0,'attachment','image/png',0),(409,3,'2019-08-14 14:14:35','2019-08-14 14:14:35','','Account','','inherit','open','closed','','account-3','','','2019-08-15 17:58:29','2019-08-15 17:58:29','',393,'http://royaldigital.labcp.co/app/uploads/2019/08/Account-1.png',0,'attachment','image/png',0),(411,3,'2019-08-14 14:14:39','2019-08-14 14:14:39','','AL_Home','','inherit','open','closed','','al_home-2','','','2019-08-15 18:03:46','2019-08-15 18:03:46','',337,'http://royaldigital.labcp.co/app/uploads/2019/08/AL_Home-1.png',0,'attachment','image/png',0),(416,3,'2019-08-14 14:17:17','2019-08-14 14:17:17','','RCL_Chat','','inherit','open','closed','','rcl_chat','','','2019-08-14 14:17:17','2019-08-14 14:17:17','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_Chat.png',0,'attachment','image/png',0),(417,3,'2019-08-14 14:17:19','2019-08-14 14:17:19','','RCL_CheckIn_Selfie','','inherit','open','closed','','rcl_checkin_selfie','','','2019-08-14 14:17:19','2019-08-14 14:17:19','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_CheckIn_Selfie.png',0,'attachment','image/png',0),(418,3,'2019-08-14 14:17:22','2019-08-14 14:17:22','','RCL_CocoCay_PortPage','','inherit','open','closed','','rcl_cococay_portpage','','','2019-08-14 14:17:22','2019-08-14 14:17:22','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_CocoCay_PortPage.png',0,'attachment','image/png',0),(420,3,'2019-08-14 14:17:26','2019-08-14 14:17:26','','RCL_E270','','inherit','open','closed','','rcl_e270','','','2019-08-15 17:56:35','2019-08-15 17:56:35','',398,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_E270.png',0,'attachment','image/png',0),(421,3,'2019-08-14 14:17:29','2019-08-14 14:17:29','','RCL_StateroomControls','','inherit','open','closed','','rcl_stateroomcontrols','','','2019-08-14 14:17:29','2019-08-14 14:17:29','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_StateroomControls.png',0,'attachment','image/png',0),(422,3,'2019-08-14 14:17:31','2019-08-14 14:17:31','','RCL_VirtualConcierge','','inherit','open','closed','','rcl_virtualconcierge','','','2019-08-14 14:17:31','2019-08-14 14:17:31','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCL_VirtualConcierge.png',0,'attachment','image/png',0),(424,3,'2019-08-14 14:17:35','2019-08-14 14:17:35','','Reservations_1','','inherit','open','closed','','reservations_1','','','2019-08-15 18:04:30','2019-08-15 18:04:30','',332,'http://royaldigital.labcp.co/app/uploads/2019/08/Reservations_1.png',0,'attachment','image/png',0),(426,3,'2019-08-14 14:17:38','2019-08-14 14:17:38','','Reservations_3','','inherit','open','closed','','reservations_3','','','2019-08-14 14:17:38','2019-08-14 14:17:38','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Reservations_3.png',0,'attachment','image/png',0),(429,1,'2019-08-14 14:42:00','2019-08-14 14:42:00','','image001','','inherit','open','closed','','image001','','','2019-08-14 14:42:00','2019-08-14 14:42:00','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/image001.jpg',0,'attachment','image/jpeg',0),(440,2,'2019-08-14 20:34:18','2019-08-14 20:34:18','','Snip20190814_11','','inherit','open','closed','','snip20190814_11','','','2019-08-14 20:34:18','2019-08-14 20:34:18','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Snip20190814_11.png',0,'attachment','image/png',0),(445,1,'2019-08-15 13:42:20','2019-08-15 13:42:20','','030814-F-2171A-','Tyndall aerials of the 1st Fighter Squadron','inherit','open','closed','','030814-f-2171a','','','2019-08-15 13:42:20','2019-08-15 13:42:20','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/F-15_vertical_deploy.jpg',0,'attachment','image/jpeg',0),(446,1,'2019-08-15 13:42:26','2019-08-15 13:42:26','','test','','inherit','open','closed','','test','','','2019-08-15 13:42:26','2019-08-15 13:42:26','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/test.png',0,'attachment','image/png',0),(447,2,'2019-08-15 13:51:19','2019-08-15 13:51:19','','EQ19-AerialsFL111RC','','inherit','open','closed','','eq19-aerialsfl111rc','','','2019-08-15 13:51:19','2019-08-15 13:51:19','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-AerialsFL111RC.png',0,'attachment','image/png',0),(449,3,'2019-08-15 13:51:59','2019-08-15 13:51:59','','06_Hideaway_3718R.','','inherit','open','closed','','06_hideaway_3718r-3','','','2019-08-15 13:51:59','2019-08-15 13:51:59','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/06_Hideaway_3718R.-1.png',0,'attachment','image/png',0),(451,3,'2019-08-15 13:52:06','2019-08-15 13:52:06','','CEL_CS_Crush_5769','','inherit','open','closed','','cel_cs_crush_5769-3','','','2019-08-15 13:52:06','2019-08-15 13:52:06','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_CS_Crush_5769.png',0,'attachment','image/png',0),(452,3,'2019-08-15 13:52:13','2019-08-15 13:52:13','','CEL_CS_Oslo048','','inherit','open','closed','','cel_cs_oslo048','','','2019-08-19 16:20:14','2019-08-19 16:20:14','',108,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_CS_Oslo048.png',0,'attachment','image/png',0),(453,3,'2019-08-15 13:52:20','2019-08-15 13:52:20','','CEL_EQ_Aerial076','','inherit','open','closed','','cel_eq_aerial076','','','2019-09-10 18:19:10','2019-09-10 18:19:10','',912,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EQ_Aerial076.png',0,'attachment','image/png',0),(454,3,'2019-08-15 13:52:26','2019-08-15 13:52:26','','CEL_EQ_CellarMasters01_297','','inherit','open','closed','','cel_eq_cellarmasters01_297','','','2019-08-19 16:09:53','2019-08-19 16:09:53','',140,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EQ_CellarMasters01_297.png',0,'attachment','image/png',0),(455,3,'2019-08-15 13:52:33','2019-08-15 13:52:33','','CEL_EQ_Martini_368','','inherit','open','closed','','cel_eq_martini_368','','','2019-08-15 13:52:33','2019-08-15 13:52:33','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EQ_Martini_368.png',0,'attachment','image/png',0),(456,3,'2019-08-15 13:52:40','2019-08-15 13:52:40','','Celebrity_Reflection','','inherit','open','closed','','celebrity_reflection','','','2019-08-19 15:56:48','2019-08-19 15:56:48','',141,'http://royaldigital.labcp.co/app/uploads/2019/08/Celebrity_Reflection.png',0,'attachment','image/png',0),(457,3,'2019-08-15 13:52:46','2019-08-15 13:52:46','','CS Conference Room_Fixed','','inherit','open','closed','','cs-conference-room_fixed','','','2019-08-19 15:51:15','2019-08-19 15:51:15','',147,'http://royaldigital.labcp.co/app/uploads/2019/08/CS-Conference-Room_Fixed.png',0,'attachment','image/png',0),(458,3,'2019-08-15 13:52:53','2019-08-15 13:52:53','','CS Main Theater','','inherit','open','closed','','cs-main-theater','','','2019-08-19 14:04:49','2019-08-19 14:04:49','',161,'http://royaldigital.labcp.co/app/uploads/2019/08/CS-Main-Theater.png',0,'attachment','image/png',0),(459,3,'2019-08-15 13:52:59','2019-08-15 13:52:59','','CS Rooftop Terrace Night 3','','inherit','open','closed','','cs-rooftop-terrace-night-3','','','2019-08-15 13:52:59','2019-08-15 13:52:59','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CS-Rooftop-Terrace-Night-3.png',0,'attachment','image/png',0),(460,3,'2019-08-15 13:53:06','2019-08-15 13:53:06','','EQ-hero1','','inherit','open','closed','','eq-hero1','','','2019-08-15 13:53:06','2019-08-15 13:53:06','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ-hero1.png',0,'attachment','image/png',0),(461,3,'2019-08-15 13:53:12','2019-08-15 13:53:12','','EQ19-AerialsFL047','','inherit','open','closed','','eq19-aerialsfl047','','','2019-08-19 16:12:49','2019-08-19 16:12:49','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-AerialsFL047.png',0,'attachment','image/png',0),(462,3,'2019-08-15 13:53:17','2019-08-15 13:53:17','','EQ19-AerialsFL111RC','','inherit','open','closed','','eq19-aerialsfl111rc-2','','','2019-08-15 13:53:17','2019-08-15 13:53:17','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-AerialsFL111RC-1.png',0,'attachment','image/png',0),(463,3,'2019-08-15 13:53:24','2019-08-15 13:53:24','','EQ19-AerialsFL287','','inherit','open','closed','','eq19-aerialsfl287','','','2019-08-15 13:53:24','2019-08-15 13:53:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-AerialsFL287.png',0,'attachment','image/png',0),(464,3,'2019-08-15 13:53:31','2019-08-15 13:53:31','','EQ19-CraftBarR','','inherit','open','closed','','eq19-craftbarr','','','2019-08-15 13:53:31','2019-08-15 13:53:31','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-CraftBarR.png',0,'attachment','image/png',0),(465,3,'2019-08-15 13:53:37','2019-08-15 13:53:37','','EQ19-QsinePetitChef1R','','inherit','open','closed','','eq19-qsinepetitchef1r','','','2019-08-19 16:16:25','2019-08-19 16:16:25','',113,'http://royaldigital.labcp.co/app/uploads/2019/08/EQ19-QsinePetitChef1R.png',0,'attachment','image/png',0),(466,3,'2019-08-15 13:53:43','2019-08-15 13:53:43','','ML-Class-Aerial_0338','','inherit','open','closed','','ml-class-aerial_0338','','','2019-08-15 13:53:43','2019-08-15 13:53:43','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/ML-Class-Aerial_0338.png',0,'attachment','image/png',0),(467,3,'2019-08-15 13:53:50','2019-08-15 13:53:50','','ML-Class-Aerial_2025','','inherit','open','closed','','ml-class-aerial_2025','','','2019-08-15 13:53:50','2019-08-15 13:53:50','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/ML-Class-Aerial_2025.png',0,'attachment','image/png',0),(468,3,'2019-08-15 13:53:55','2019-08-15 13:53:55','','RCI_Adventure_ExteriorLand_3','','inherit','open','closed','','rci_adventure_exteriorland_3','','','2019-09-13 18:47:32','2019-09-13 18:47:32','',155,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Adventure_ExteriorLand_3.png',0,'attachment','image/png',0),(469,3,'2019-08-15 13:54:02','2019-08-15 13:54:02','','RCI_Adventure_ExteriorLand_UR','','inherit','open','closed','','rci_adventure_exteriorland_ur','','','2019-09-13 18:44:31','2019-09-13 18:44:31','',155,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Adventure_ExteriorLand_UR.png',0,'attachment','image/png',0),(471,3,'2019-08-15 13:54:18','2019-08-15 13:54:18','','RCI_AL_Allure_Capri_ret_RGB','','inherit','open','closed','','rci_al_allure_capri_ret_rgb','','','2019-08-19 15:38:24','2019-08-19 15:38:24','',148,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL_Allure_Capri_ret_RGB.png',0,'attachment','image/png',0),(472,3,'2019-08-15 13:54:24','2019-08-15 13:54:24','','RCI_AL_AQUA_theater_143','','inherit','open','closed','','rci_al_aqua_theater_143','','','2019-08-15 13:54:24','2019-08-15 13:54:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL_AQUA_theater_143.png',0,'attachment','image/png',0),(473,3,'2019-08-15 13:54:31','2019-08-15 13:54:31','','RCI_AL_Drone_DJI_0061_RET_CMYK','','inherit','open','closed','','rci_al_drone_dji_0061_ret_cmyk','','','2019-08-15 13:54:31','2019-08-15 13:54:31','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL_Drone_DJI_0061_RET_CMYK.png',0,'attachment','image/png',0),(474,3,'2019-08-15 13:54:40','2019-08-15 13:54:40','','RCI_AL_Drone_DJI_0063_RET_CMYK','','inherit','open','closed','','rci_al_drone_dji_0063_ret_cmyk','','','2019-08-15 13:54:40','2019-08-15 13:54:40','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL_Drone_DJI_0063_RET_CMYK.png',0,'attachment','image/png',0),(475,3,'2019-08-15 13:54:55','2019-08-15 13:54:55','','RCI_AL-Aerial316R','','inherit','open','closed','','rci_al-aerial316r','','','2019-08-15 13:54:55','2019-08-15 13:54:55','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL-Aerial316R.png',0,'attachment','image/png',0),(476,3,'2019-08-15 13:55:07','2019-08-15 13:55:07','','RCI_AL-AquatheaterH','','inherit','open','closed','','rci_al-aquatheaterh','','','2019-08-15 13:55:07','2019-08-15 13:55:07','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL-AquatheaterH.png',0,'attachment','image/png',0),(477,3,'2019-08-15 13:55:20','2019-08-15 13:55:20','','RCI_AL-OnAir02','','inherit','open','closed','','rci_al-onair02','','','2019-08-15 13:55:20','2019-08-15 13:55:20','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_AL-OnAir02.png',0,'attachment','image/png',0),(478,3,'2019-08-15 13:55:22','2019-08-15 13:55:22','','RCI_BR,MA and ID-Center Stage-6','','inherit','open','closed','','rci_brma-and-id-center-stage-6','','','2019-08-15 13:55:22','2019-08-15 13:55:22','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_BRMA-and-ID-Center-Stage-6.png',0,'attachment','image/png',0),(479,3,'2019-08-15 13:55:26','2019-08-15 13:55:26','','RCI_Brilliance_ExteriorMntn_2','','inherit','open','closed','','rci_brilliance_exteriormntn_2','','','2019-08-15 13:55:26','2019-08-15 13:55:26','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Brilliance_ExteriorMntn_2.png',0,'attachment','image/png',0),(480,3,'2019-08-15 13:55:33','2019-08-15 13:55:33','','RCI_Brilliance_ExteriorSide_2','','inherit','open','closed','','rci_brilliance_exteriorside_2','','','2019-08-15 13:55:33','2019-08-15 13:55:33','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Brilliance_ExteriorSide_2.png',0,'attachment','image/png',0),(481,3,'2019-08-15 13:55:41','2019-08-15 13:55:41','','RCI_Brilliance_Theater','','inherit','open','closed','','rci_brilliance_theater','','','2019-08-19 14:52:40','2019-08-19 14:52:40','',156,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Brilliance_Theater.png',0,'attachment','image/png',0),(482,3,'2019-08-15 13:55:48','2019-08-15 13:55:48','','RCI_Fleetwide_AerialGlacier','','inherit','open','closed','','rci_fleetwide_aerialglacier','','','2019-08-15 13:55:48','2019-08-15 13:55:48','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Fleetwide_AerialGlacier.png',0,'attachment','image/png',0),(483,3,'2019-08-15 13:55:55','2019-08-15 13:55:55','','RCI_GoH_Dan_Promenade_020_CMYK_RET','','inherit','open','closed','','rci_goh_dan_promenade_020_cmyk_ret','','','2019-08-15 13:55:55','2019-08-15 13:55:55','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_GoH_Dan_Promenade_020_CMYK_RET.png',0,'attachment','image/png',0),(484,3,'2019-08-15 13:56:01','2019-08-15 13:56:01','','RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET','','inherit','open','closed','','rci_goh_sage_ad_pooldeck_001_cmyk_ret','','','2019-08-15 13:56:01','2019-08-15 13:56:01','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_GoH_Sage_AD_PoolDeck_001_CMYK_RET.png',0,'attachment','image/png',0),(485,3,'2019-08-15 13:56:08','2019-08-15 13:56:08','','RCI_HM_AdvOcean-TheaterR','','inherit','open','closed','','rci_hm_advocean-theaterr','','','2019-08-15 13:56:08','2019-08-15 13:56:08','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_AdvOcean-TheaterR.png',0,'attachment','image/png',0),(486,3,'2019-08-15 13:56:15','2019-08-15 13:56:15','','RCI_HM_Aerials_June2016_714R_Horizon_CMYK','','inherit','open','closed','','rci_hm_aerials_june2016_714r_horizon_cmyk','','','2019-08-15 13:56:15','2019-08-15 13:56:15','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_Aerials_June2016_714R_Horizon_CMYK.png',0,'attachment','image/png',0),(487,3,'2019-08-15 13:56:22','2019-08-15 13:56:22','','RCI_HM_aft_drone_MU22703_RET_CMYK','','inherit','open','closed','','rci_hm_aft_drone_mu22703_ret_cmyk','','','2019-08-15 13:56:22','2019-08-15 13:56:22','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_aft_drone_MU22703_RET_CMYK.png',0,'attachment','image/png',0),(488,3,'2019-08-15 13:56:28','2019-08-15 13:56:28','','RCI_HM_BionicBarR','','inherit','open','closed','','rci_hm_bionicbarr','','','2019-08-15 13:56:28','2019-08-15 13:56:28','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_BionicBarR.png',0,'attachment','image/png',0),(489,3,'2019-08-15 13:56:33','2019-08-15 13:56:33','','RCI_HM_DepartureFLL139_1_CMYK_RET','','inherit','open','closed','','rci_hm_departurefll139_1_cmyk_ret','','','2019-08-15 13:56:33','2019-08-15 13:56:33','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_DepartureFLL139_1_CMYK_RET.png',0,'attachment','image/png',0),(490,3,'2019-08-15 13:56:40','2019-08-15 13:56:40','','RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK','','inherit','open','closed','','rci_hm_eastern_caribbean_dec2018_content_creator_nicmorley_drone_063_ret_cmyk','','','2019-08-15 13:56:40','2019-08-15 13:56:40','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_Eastern_Caribbean_Dec2018_Content_Creator_NicMorley_Drone_063_RET_CMYK.png',0,'attachment','image/png',0),(491,3,'2019-08-15 13:56:46','2019-08-15 13:56:46','','RCI_HM_JazzOn4R','','inherit','open','closed','','rci_hm_jazzon4r','','','2019-08-15 13:56:46','2019-08-15 13:56:46','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_JazzOn4R.png',0,'attachment','image/png',0),(492,3,'2019-08-15 13:56:53','2019-08-15 13:56:53','','RCI_HM_NextCruiseR','','inherit','open','closed','','rci_hm_nextcruiser','','','2019-08-15 13:56:53','2019-08-15 13:56:53','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_NextCruiseR.png',0,'attachment','image/png',0),(493,3,'2019-08-15 13:56:59','2019-08-15 13:56:59','','RCI_HM_night_Drone_AFT_MU22703_RET_CMYK','','inherit','open','closed','','rci_hm_night_drone_aft_mu22703_ret_cmyk','','','2019-08-15 13:56:59','2019-08-15 13:56:59','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_night_Drone_AFT_MU22703_RET_CMYK.png',0,'attachment','image/png',0),(494,3,'2019-08-15 13:57:06','2019-08-15 13:57:06','','RCI_HM_Perfect_Storm_NIGHT_MU22703_RET','','inherit','open','closed','','rci_hm_perfect_storm_night_mu22703_ret','','','2019-08-19 14:40:26','2019-08-19 14:40:26','',158,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_Perfect_Storm_NIGHT_MU22703_RET.png',0,'attachment','image/png',0),(495,3,'2019-08-15 13:57:12','2019-08-15 13:57:12','','RCI_HM_TheLivingRoomR','','inherit','open','closed','','rci_hm_thelivingroomr','','','2019-09-13 18:51:24','2019-09-13 18:51:24','',161,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_HM_TheLivingRoomR.png',0,'attachment','image/png',0),(496,3,'2019-08-15 13:57:17','2019-08-15 13:57:17','','RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK','','inherit','open','closed','','rci_id_europe_may2018_jasonlisiewski_playmakers_1583_ret_cmyk','','','2019-08-15 13:57:17','2019-08-15 13:57:17','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_Europe_May2018_JasonLisiewski_Playmakers_1583_RET_CMYK.png',0,'attachment','image/png',0),(497,3,'2019-08-15 13:57:24','2019-08-15 13:57:24','','RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK','','inherit','open','closed','','rci_id_june2018_portugal_heli_jordandani_sunrise_ship_01_0012_ret_cmyk','','','2019-08-15 13:57:24','2019-08-15 13:57:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0012_RET_CMYK.png',0,'attachment','image/png',0),(498,3,'2019-08-15 13:57:30','2019-08-15 13:57:30','','RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK','','inherit','open','closed','','rci_id_june2018_portugal_heli_jordandani_sunrise_ship_01_0308_ret_cmyk','','','2019-09-09 16:49:51','2019-09-09 16:49:51','',144,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunrise_Ship_01_0308_RET_CMYK.png',0,'attachment','image/png',0),(499,3,'2019-08-15 13:57:37','2019-08-15 13:57:37','','RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK','','inherit','open','closed','','rci_id_june2018_portugal_heli_jordandani_sunset_ship_02_0196_ret_cmyk','','','2019-08-15 13:57:37','2019-08-15 13:57:37','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_June2018_Portugal_Heli_JordanDani_Sunset_Ship_02_0196_RET_CMYK.png',0,'attachment','image/png',0),(500,3,'2019-08-15 13:57:43','2019-08-15 13:57:43','','RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK','','inherit','open','closed','','rci_id_portugal_june2018_sunset_ship_02_085_ret_ext_cmyk','','','2019-08-15 13:57:43','2019-08-15 13:57:43','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_Portugal_June2018_Sunset_Ship_02_085_RET_EXT_CMYK.png',0,'attachment','image/png',0),(501,3,'2019-08-15 13:57:49','2019-08-15 13:57:49','','RCI_LB_Liberty_AP_0086_4S','','inherit','open','closed','','rci_lb_liberty_ap_0086_4s','','','2019-08-15 13:57:49','2019-08-15 13:57:49','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_AP_0086_4S.png',0,'attachment','image/png',0),(502,3,'2019-08-15 13:57:56','2019-08-15 13:57:56','','RCI_LB_Liberty_AP_0100_4S','','inherit','open','closed','','rci_lb_liberty_ap_0100_4s','','','2019-08-15 13:57:56','2019-08-15 13:57:56','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_AP_0100_4S.png',0,'attachment','image/png',0),(503,3,'2019-08-15 13:58:03','2019-08-15 13:58:03','','RCI_LB_Liberty_drone_Still002','','inherit','open','closed','','rci_lb_liberty_drone_still002','','','2019-08-15 13:58:03','2019-08-15 13:58:03','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_drone_Still002.png',0,'attachment','image/png',0),(504,3,'2019-08-15 13:58:09','2019-08-15 13:58:09','','RCI_LB_Liberty_drone_Still005','','inherit','open','closed','','rci_lb_liberty_drone_still005','','','2019-08-15 13:58:09','2019-08-15 13:58:09','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_drone_Still005.png',0,'attachment','image/png',0),(505,3,'2019-08-15 13:58:15','2019-08-15 13:58:15','','RCI_LB_Liberty_drone_Still014','','inherit','open','closed','','rci_lb_liberty_drone_still014','','','2019-08-15 13:58:15','2019-08-15 13:58:15','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_drone_Still014.png',0,'attachment','image/png',0),(506,3,'2019-08-15 13:58:22','2019-08-15 13:58:22','','RCI_LB_Liberty_MU23552_0061_V6','','inherit','open','closed','','rci_lb_liberty_mu23552_0061_v6','','','2019-08-19 14:22:17','2019-08-19 14:22:17','',159,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_LB_Liberty_MU23552_0061_V6.png',0,'attachment','image/png',0),(507,3,'2019-08-15 13:58:29','2019-08-15 13:58:29','','RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK','','inherit','open','closed','','rci_ma_aerials_june2018_michelverdure_124_ret_cmyk','','','2019-08-15 13:58:29','2019-08-15 13:58:29','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MA_Aerials_June2018_MichelVerdure_124_RET_CMYK.png',0,'attachment','image/png',0),(508,3,'2019-08-15 13:58:36','2019-08-15 13:58:36','','RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK','','inherit','open','closed','','rci_ma_aerials_june2018_michelverdure_578_ret_cmyk','','','2019-08-15 13:58:36','2019-08-15 13:58:36','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MA_Aerials_June2018_MichelVerdure_578_RET_CMYK.png',0,'attachment','image/png',0),(510,3,'2019-08-15 13:58:49','2019-08-15 13:58:49','','RCI_Majesty_ChorusTheater','','inherit','open','closed','','rci_majesty_chorustheater','','','2019-08-15 13:58:49','2019-08-15 13:58:49','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Majesty_ChorusTheater.png',0,'attachment','image/png',0),(511,3,'2019-08-15 13:58:58','2019-08-15 13:58:58','','RCI_MarinerAerial176','','inherit','open','closed','','rci_marineraerial176','','','2019-08-19 15:44:54','2019-08-19 15:44:54','',153,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MarinerAerial176.png',0,'attachment','image/png',0),(512,3,'2019-08-15 13:59:05','2019-08-15 13:59:05','','RCI_MJ_Aerials2016-054F','','inherit','open','closed','','rci_mj_aerials2016-054f','','','2019-08-19 14:49:27','2019-08-19 14:49:27','',157,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MJ_Aerials2016-054F.png',0,'attachment','image/png',0),(513,3,'2019-08-15 13:59:11','2019-08-15 13:59:11','','RCI_MJ_Aerials2016-138R','','inherit','open','closed','','rci_mj_aerials2016-138r','','','2019-08-15 13:59:11','2019-08-15 13:59:11','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MJ_Aerials2016-138R.png',0,'attachment','image/png',0),(514,3,'2019-08-15 13:59:17','2019-08-15 13:59:17','','RCI_MJ_Aerials2016-165F','','inherit','open','closed','','rci_mj_aerials2016-165f','','','2019-08-15 13:59:17','2019-08-15 13:59:17','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MJ_Aerials2016-165F.png',0,'attachment','image/png',0),(515,3,'2019-08-15 13:59:24','2019-08-15 13:59:24','','RCI_MJ-Boogie Wonderland-3','','inherit','open','closed','','rci_mj-boogie-wonderland-3','','','2019-08-15 13:59:24','2019-08-15 13:59:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_MJ-Boogie-Wonderland-3.png',0,'attachment','image/png',0),(517,3,'2019-08-15 13:59:37','2019-08-15 13:59:37','','RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK','','inherit','open','closed','','rci_nv_cc_nicmorley_032019_playmakers_ba8i4813_ret_cmyk','','','2019-08-15 13:59:37','2019-08-15 13:59:37','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV_CC_NicMorley_032019_Playmakers_BA8I4813_RET_CMYK.png',0,'attachment','image/png',0),(518,3,'2019-08-15 13:59:44','2019-08-15 13:59:44','','RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK','','inherit','open','closed','','rci_nv_cc_nmorley_032019_drone_dji_0738_ret_cmyk','','','2019-08-15 13:59:44','2019-08-15 13:59:44','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV_CC_NMorley_032019_Drone_DJI_0738_RET_CMYK.png',0,'attachment','image/png',0),(519,3,'2019-08-15 13:59:51','2019-08-15 13:59:51','','RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK','','inherit','open','closed','','rci_nv_cc_nmorley_032019_limeandcoconut_ba8i2446_ret_cmyk','','','2019-08-15 13:59:51','2019-08-15 13:59:51','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV_CC_NMorley_032019_LimeandCoconut_BA8I2446_RET_CMYK.png',0,'attachment','image/png',0),(520,3,'2019-08-15 13:59:58','2019-08-15 13:59:58','','RCI_NV_OOH_032019_J&D_DP_1_Aerial_5705_RET_CMYK','','inherit','open','closed','','rci_nv_ooh_032019_jd_dp_1_aerial_5705_ret_cmyk','','','2019-08-15 13:59:58','2019-08-15 13:59:58','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV_OOH_032019_JD_DP_1_Aerial_5705_RET_CMYK.png',0,'attachment','image/png',0),(521,3,'2019-08-15 14:00:05','2019-08-15 14:00:05','','RCI_NV_OOH_J&D_032019_DP_1_Aerial_5782_RET_CMYK','','inherit','open','closed','','rci_nv_ooh_jd_032019_dp_1_aerial_5782_ret_cmyk','','','2019-08-15 14:00:05','2019-08-15 14:00:05','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV_OOH_JD_032019_DP_1_Aerial_5782_RET_CMYK.png',0,'attachment','image/png',0),(522,3,'2019-08-15 14:00:12','2019-08-15 14:00:12','','RCI_NV-All Access-5','','inherit','open','closed','','rci_nv-all-access-5','','','2019-08-15 14:00:12','2019-08-15 14:00:12','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_NV-All-Access-5.png',0,'attachment','image/png',0),(523,3,'2019-08-15 14:00:19','2019-08-15 14:00:19','','RCI_Serenade_ExteriorHubbard_2','','inherit','open','closed','','rci_serenade_exteriorhubbard_2','','','2019-08-19 15:11:46','2019-08-19 15:11:46','',152,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_ExteriorHubbard_2.png',0,'attachment','image/png',0),(524,3,'2019-08-15 14:00:25','2019-08-15 14:00:25','','RCI_Serenade_ExteriorSide_3','','inherit','open','closed','','rci_serenade_exteriorside_3','','','2019-08-15 14:00:25','2019-08-15 14:00:25','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_ExteriorSide_3.png',0,'attachment','image/png',0),(525,3,'2019-08-15 14:00:33','2019-08-15 14:00:33','','RCI_Serenade_ExteriorSide_11','','inherit','open','closed','','rci_serenade_exteriorside_11','','','2019-08-15 14:00:33','2019-08-15 14:00:33','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_ExteriorSide_11.png',0,'attachment','image/png',0),(526,3,'2019-08-15 14:00:40','2019-08-15 14:00:40','','RCI_Serenade_InternetCafe','','inherit','open','closed','','rci_serenade_internetcafe','','','2019-08-15 14:00:40','2019-08-15 14:00:40','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_InternetCafe.png',0,'attachment','image/png',0),(527,3,'2019-08-15 14:00:48','2019-08-15 14:00:48','','RCI_Serenade_VortexLounge','','inherit','open','closed','','rci_serenade_vortexlounge','','','2019-08-15 20:21:08','2019-08-15 20:21:08','',271,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_VortexLounge.png',0,'attachment','image/png',0),(528,3,'2019-08-15 14:00:55','2019-08-15 14:00:55','','RCI_Serenade_YachtClub','','inherit','open','closed','','rci_serenade_yachtclub','','','2019-08-15 14:00:55','2019-08-15 14:00:55','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Serenade_YachtClub.png',0,'attachment','image/png',0),(529,3,'2019-08-15 14:01:02','2019-08-15 14:01:02','','RCI_VI_Norway_21','','inherit','open','closed','','rci_vi_norway_21','','','2019-08-15 14:01:02','2019-08-15 14:01:02','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_VI_Norway_21.png',0,'attachment','image/png',0),(530,3,'2019-08-15 14:01:10','2019-08-15 14:01:10','','RCI_VI_Norway_27','','inherit','open','closed','','rci_vi_norway_27','','','2019-08-15 14:01:10','2019-08-15 14:01:10','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_VI_Norway_27.png',0,'attachment','image/png',0),(531,3,'2019-08-15 14:01:17','2019-08-15 14:01:17','','RCI_VI_Norway_41','','inherit','open','closed','','rci_vi_norway_41','','','2019-08-19 14:15:21','2019-08-19 14:15:21','',160,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_VI_Norway_41.png',0,'attachment','image/png',0),(532,3,'2019-08-15 14:01:24','2019-08-15 14:01:24','','RCI_Vision_PursersDesk','','inherit','open','closed','','rci_vision_pursersdesk','','','2019-08-15 14:01:24','2019-08-15 14:01:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Vision_PursersDesk.png',0,'attachment','image/png',0),(533,3,'2019-08-15 14:01:31','2019-08-15 14:01:31','','RCI_Vision_VikingCrown_2','','inherit','open','closed','','rci_vision_vikingcrown_2','','','2019-08-15 20:21:08','2019-08-15 20:21:08','',271,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_Vision_VikingCrown_2.png',0,'attachment','image/png',0),(534,3,'2019-08-15 14:01:38','2019-08-15 14:01:38','','RF-Aerial080F','','inherit','open','closed','','rf-aerial080f','','','2019-08-15 14:01:38','2019-08-15 14:01:38','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RF-Aerial080F.png',0,'attachment','image/png',0),(535,3,'2019-08-15 14:01:44','2019-08-15 14:01:44','','RF-Aerial703F','','inherit','open','closed','','rf-aerial703f','','','2019-08-15 14:01:44','2019-08-15 14:01:44','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RF-Aerial703F.png',0,'attachment','image/png',0),(536,3,'2019-08-15 14:01:52','2019-08-15 14:01:52','','RF-ColdRoomPeople','','inherit','open','closed','','rf-coldroompeople','','','2019-08-15 20:21:08','2019-08-15 20:21:08','',271,'http://royaldigital.labcp.co/app/uploads/2019/08/RF-ColdRoomPeople.png',0,'attachment','image/png',0),(537,3,'2019-08-15 14:01:59','2019-08-15 14:01:59','','RF-ConfRoom-A','','inherit','open','closed','','rf-confroom-a','','','2019-08-15 14:01:59','2019-08-15 14:01:59','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RF-ConfRoom-A.png',0,'attachment','image/png',0),(538,3,'2019-08-15 14:02:05','2019-08-15 14:02:05','','SI Rox_26022012_0442F','','inherit','open','closed','','si-rox_26022012_0442f','','','2019-08-15 14:02:05','2019-08-15 14:02:05','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/SI-Rox_26022012_0442F.png',0,'attachment','image/png',0),(539,3,'2019-08-15 14:02:13','2019-08-15 14:02:13','','Topper738R','','inherit','open','closed','','topper738r','','','2019-08-15 14:02:13','2019-08-15 14:02:13','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Topper738R.png',0,'attachment','image/png',0),(540,3,'2019-08-15 14:02:20','2019-08-15 14:02:20','','WorldClassBar_6149R','','inherit','open','closed','','worldclassbar_6149r','','','2019-08-15 14:02:20','2019-08-15 14:02:20','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/WorldClassBar_6149R.png',0,'attachment','image/png',0),(544,3,'2019-08-15 15:19:21','2019-08-15 15:19:21','','Mel selfie','','inherit','open','closed','','screen-shot-2019-08-14-at-4-32-18-pm-00_00_01_13-still001','','','2019-09-09 14:08:28','2019-09-09 14:08:28','',17,'http://royaldigital.labcp.co/app/uploads/2019/08/Screen-Shot-2019-08-14-at-4.32.18-PM.00_00_01_13.Still001.jpg',0,'attachment','image/jpeg',0),(547,3,'2019-08-15 18:12:10','2019-08-15 18:12:10','','Mel -Chat','','inherit','open','closed','','mel-chat','','','2019-08-15 18:12:10','2019-08-15 18:12:10','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Mel-Chat.jpg',0,'attachment','image/jpeg',0),(548,3,'2019-08-15 18:23:56','2019-08-15 18:23:56','','introducing celebrity edge','','inherit','open','closed','','introducing-celebrity-edge','','','2019-08-15 18:26:21','2019-08-15 18:26:21','',399,'http://royaldigital.labcp.co/app/uploads/2019/08/introducing-celebrity-edge.png',0,'attachment','image/png',0),(549,3,'2019-08-15 18:24:14','2019-08-15 18:24:14','','Celebrity Edge, Access Tour High Resolution .00_00_07_04.Still002','','inherit','open','closed','','celebrity-edge-access-tour-high-resolution-00_00_07_04-still002','','','2019-08-15 18:25:09','2019-08-15 18:25:09','',399,'http://royaldigital.labcp.co/app/uploads/2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_07_04.Still002.jpg',0,'attachment','image/jpeg',0),(550,3,'2019-08-15 18:24:24','2019-08-15 18:24:24','','Celebrity Edge, Access Tour High Resolution .00_00_18_17.Still001','','inherit','open','closed','','celebrity-edge-access-tour-high-resolution-00_00_18_17-still001','','','2019-08-15 18:24:24','2019-08-15 18:24:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_00_18_17.Still001.jpg',0,'attachment','image/jpeg',0),(554,3,'2019-08-15 18:32:17','2019-08-15 18:32:17','','Celebrity Edge, Access Tour High Resolution .00_01_12_09.Still003','','inherit','open','closed','','celebrity-edge-access-tour-high-resolution-00_01_12_09-still003','','','2019-08-19 15:58:14','2019-08-19 15:58:14','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_01_12_09.Still003.jpg',0,'attachment','image/jpeg',0),(558,3,'2019-08-15 18:46:48','2019-08-15 18:46:48','','Celebrity Edge, Access Tour High Resolution .00_02_08_19.Still004','','inherit','open','closed','','celebrity-edge-access-tour-high-resolution-00_02_08_19-still004','','','2019-08-16 18:47:25','2019-08-16 18:47:25','',398,'http://royaldigital.labcp.co/app/uploads/2019/08/Celebrity-Edge-Access-Tour-High-Resolution-.00_02_08_19.Still004.jpg',0,'attachment','image/jpeg',0),(560,3,'2019-08-15 18:59:23','2019-08-15 18:59:23','','Stateroom Selects.00_00_32_07.Still010','','inherit','open','closed','','stateroom-selects-00_00_32_07-still010','','','2019-08-15 18:59:23','2019-08-15 18:59:23','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_32_07.Still010.jpg',0,'attachment','image/jpeg',0),(561,3,'2019-08-15 18:59:33','2019-08-15 18:59:33','','Stateroom Selects.00_00_34_15.Still011','','inherit','open','closed','','stateroom-selects-00_00_34_15-still011','','','2019-08-15 19:00:01','2019-08-15 19:00:01','',395,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_34_15.Still011.jpg',0,'attachment','image/jpeg',0),(564,3,'2019-08-15 19:01:33','2019-08-15 19:01:33','','Stateroom Selects.00_00_36_23.Still012','','inherit','open','closed','','stateroom-selects-00_00_36_23-still012','','','2019-08-15 19:02:24','2019-08-15 19:02:24','',395,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_36_23.Still012.jpg',0,'attachment','image/jpeg',0),(567,3,'2019-08-15 19:04:35','2019-08-15 19:04:35','','Stateroom Selects.00_00_31_06.Still002','','inherit','open','closed','','stateroom-selects-00_00_31_06-still002','','','2019-08-15 19:05:16','2019-08-15 19:05:16','',395,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_31_06.Still002.jpg',0,'attachment','image/jpeg',0),(569,3,'2019-08-15 19:07:45','2019-08-15 19:07:45','','Stateroom Selects.00_00_09_12.Still013','','inherit','open','closed','','stateroom-selects-00_00_09_12-still013','','','2019-08-15 19:07:45','2019-08-15 19:07:45','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_09_12.Still013.jpg',0,'attachment','image/jpeg',0),(570,3,'2019-08-15 19:07:53','2019-08-15 19:07:53','','Stateroom Selects.00_00_11_18.Still014','','inherit','open','closed','','stateroom-selects-00_00_11_18-still014','','','2019-08-15 19:07:53','2019-08-15 19:07:53','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/Stateroom-Selects.00_00_11_18.Still014.jpg',0,'attachment','image/jpeg',0),(571,3,'2019-08-15 19:09:15','2019-08-15 19:09:15','','digital key','','inherit','open','closed','','digital-key','','','2019-08-15 19:09:15','2019-08-15 19:09:15','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/digital-key.png',0,'attachment','image/png',0),(573,1,'2019-08-15 20:12:00','2019-08-15 20:12:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Description post','description_post','publish','closed','closed','','field_5d55bc8c63af0','','','2019-08-15 20:12:00','2019-08-15 20:12:00','',274,'http://royaldigital.labcp.co/?post_type=acf-field&p=573',1,'acf-field','',0),(574,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:12:\"page-faq.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:12:{i:0;s:11:\"the_content\";i:1;s:7:\"excerpt\";i:2;s:10:\"discussion\";i:3;s:8:\"comments\";i:4;s:9:\"revisions\";i:5;s:4:\"slug\";i:6;s:6:\"author\";i:7;s:6:\"format\";i:8;s:14:\"featured_image\";i:9;s:10:\"categories\";i:10;s:4:\"tags\";i:11;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Page FAQ','page-faq','publish','open','open','','group_5d55a0fd122ed','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',0,'http://royaldigital.labcp.co/?p=574',0,'acf-field-group','',0),(575,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Hero Section','','publish','closed','closed','','field_5d55a11a697d8','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=575',0,'acf-field','',0),(576,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Hero Section Title','hero_section_title','publish','closed','closed','','field_5d55a345f8cdb','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=576',1,'acf-field','',0),(577,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:2:\"id\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Hero Section Image','hero_section_image','publish','closed','closed','','field_5d55a424f8cdc','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=577',2,'acf-field','',0),(578,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:6;s:3:\"max\";i:6;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Hero Section Links','hero_section_links','publish','closed','closed','','field_5d55a451f8cdd','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=578',3,'acf-field','',0),(579,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Hero Section Link','hero_section_link','publish','closed','closed','','field_5d55a498f8cde','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',578,'http://royaldigital.labcp.co/?post_type=acf-field&p=579',0,'acf-field','',0),(580,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Hero Section Link Title','hero_section_link_title','publish','closed','closed','','field_5d55a4acf8cdf','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',578,'http://royaldigital.labcp.co/?post_type=acf-field&p=580',1,'acf-field','',0),(581,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Popular Features','','publish','closed','closed','','field_5d55a13e697d9','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=581',4,'acf-field','',0),(582,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Popular Features Title','popular_features_title','publish','closed','closed','','field_5d55abb7ffa2d','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=582',5,'acf-field','',0),(583,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:6;s:3:\"max\";i:6;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Popular Features Links','popular_features_links','publish','closed','closed','','field_5d55ac6b2b75e','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=583',6,'acf-field','',0),(584,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Popular Features Link','popular_features_link','publish','closed','closed','','field_5d55ac6b2b75f','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',583,'http://royaldigital.labcp.co/?post_type=acf-field&p=584',0,'acf-field','',0),(585,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Popular Features Link Title','popular_features_link_title','publish','closed','closed','','field_5d55ac6b2b760','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',583,'http://royaldigital.labcp.co/?post_type=acf-field&p=585',1,'acf-field','',0),(586,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Helpful articles and how-to\'s','','publish','closed','closed','','field_5d55a152697da','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=586',7,'acf-field','',0),(587,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Helpful articles and how-to\'s Title','helpful_articles_title','publish','closed','closed','','field_5d55b136c34eb','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=587',8,'acf-field','',0),(588,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured Post Image Right','','publish','closed','closed','','field_5d55a18f697db','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=588',9,'acf-field','',0),(589,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Post Image Right Title','post_image_right_title','publish','closed','closed','','field_5d55b49247b3a','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=589',10,'acf-field','',0),(590,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Post Image Right Description','post_image_right_description','publish','closed','closed','','field_5d55b49b47b3b','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=590',11,'acf-field','',0),(591,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Post Image Right Title Link','post_image_right_title_link','publish','closed','closed','','field_5d55b4a747b3c','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=591',12,'acf-field','',0),(592,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Post Image Right Link','post_image_right_link','publish','closed','closed','','field_5d55b4b247b3d','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=592',13,'acf-field','',0),(593,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:2:\"id\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Post Image Right Image','post_image_right_image','publish','closed','closed','','field_5d55b4be47b3e','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=593',14,'acf-field','',0),(594,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured Post Image Left','','publish','closed','closed','','field_5d55a1a0697dc','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=594',15,'acf-field','',0),(595,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Post Image Left Title','post_image_left_title','publish','closed','closed','','field_5d55b69a7e8a7','','','2019-08-15 20:13:40','2019-08-15 20:13:40','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=595',16,'acf-field','',0),(596,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5d57093fdc431\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"Link\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Post Image Left Link','post_image_left_link','publish','closed','closed','','field_5d55b6a47e8a8','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=596',18,'acf-field','',0),(597,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:2:\"id\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Post Image Left Image','post_image_left_image','publish','closed','closed','','field_5d55b6b47e8a9','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=597',20,'acf-field','',0),(598,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','List Featured Post Three','','publish','closed','closed','','field_5d55a1a5697dd','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=598',21,'acf-field','',0),(599,1,'2019-08-15 20:13:40','2019-08-15 20:13:40','a:11:{s:4:\"type\";s:11:\"post_object\";s:12:\"instructions\";s:18:\"Select Three Posts\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:3:\"faq\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:1;s:13:\"return_format\";s:6:\"object\";s:2:\"ui\";i:1;}','Select posts','select_posts','publish','closed','closed','','field_5d55ba1e32eec','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=599',22,'acf-field','',0),(600,3,'2019-08-15 20:17:20','2019-08-15 20:17:20','','Shorex Selects.00_00_00_00.Still001','','inherit','open','closed','','shorex-selects-00_00_00_00-still001','','','2019-08-15 20:17:20','2019-08-15 20:17:20','',392,'http://royaldigital.labcp.co/app/uploads/2019/08/Shorex-Selects.00_00_00_00.Still001.jpg',0,'attachment','image/jpeg',0),(601,3,'2019-08-15 20:17:26','2019-08-15 20:17:26','','Raoial Kiosh Shore Ex Media Event_ New Tino Edit 2 FINAL.00_00_03_29.Still001','','inherit','open','closed','','raoial-kiosh-shore-ex-media-event_-new-tino-edit-2-final-00_00_03_29-still001','','','2019-08-15 20:17:26','2019-08-15 20:17:26','',392,'http://royaldigital.labcp.co/app/uploads/2019/08/Raoial-Kiosh-Shore-Ex-Media-Event_-New-Tino-Edit-2-FINAL.00_00_03_29.Still001.jpg',0,'attachment','image/jpeg',0),(603,1,'2019-08-15 20:21:08','2019-08-15 20:21:08','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-15 20:21:08','2019-08-15 20:21:08','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(604,3,'2019-08-15 20:31:16','2019-08-15 20:31:16','','shorex kiosk','','inherit','open','closed','','shorex-kiosk','','','2019-08-20 14:38:11','2019-08-20 14:38:11','',714,'http://royaldigital.labcp.co/app/uploads/2019/08/shorex-kiosk.jpg',0,'attachment','image/jpeg',0),(607,3,'2019-08-15 20:35:31','2019-08-15 20:35:31','','RCI_SR_ChopsRestaurant.tif','empty onboard Chops Restaurant with plush red walls, dining, serenade of the seas, sr, radiance class, public rooms','inherit','open','closed','','rci_sr_chopsrestaurant-tif','','','2019-08-15 20:35:31','2019-08-15 20:35:31','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/SR-chops-interior-dining-room.jpg',0,'attachment','image/jpeg',0),(609,3,'2019-08-15 20:40:33','2019-08-15 20:40:33','','the shore excursions kiosks/ipads.','the shore excursions kiosks/ipads.','inherit','open','closed','','the-shore-excursions-kiosks-ipads','','','2019-08-19 15:33:01','2019-08-19 15:33:01','',149,'http://royaldigital.labcp.co/app/uploads/2019/08/SY-shorex-shore-excursion-kiosk-ipad-ipads-desk.jpg',0,'attachment','image/jpeg',0),(611,3,'2019-08-16 13:06:48','2019-08-16 13:06:48','','Royal Version TRI_Frictionless Arrival.00_00_51_22.Still001','','inherit','open','closed','','royal-version-tri_frictionless-arrival-00_00_51_22-still001','','','2019-08-16 13:06:48','2019-08-16 13:06:48','',391,'http://royaldigital.labcp.co/app/uploads/2019/08/Royal-Version-TRI_Frictionless-Arrival.00_00_51_22.Still001.jpg',0,'attachment','image/jpeg',0),(613,3,'2019-08-16 13:45:19','2019-08-16 13:45:19','','two70_exp_','','inherit','open','closed','','two70_exp_','','','2019-08-16 13:45:19','2019-08-16 13:45:19','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/two70_exp_.jpg',0,'attachment','image/jpeg',0),(614,3,'2019-08-16 13:45:22','2019-08-16 13:45:22','','two70_exp_ Correct','','inherit','open','closed','','two70_exp_-correct','','','2019-08-16 13:45:22','2019-08-16 13:45:22','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/two70_exp_-Correct.jpg',0,'attachment','image/jpeg',0),(616,3,'2019-08-16 14:22:06','2019-08-16 14:22:06','','guest account','','inherit','open','closed','','guest-account','','','2019-08-16 14:22:06','2019-08-16 14:22:06','',337,'http://royaldigital.labcp.co/app/uploads/2019/08/guest-account.png',0,'attachment','image/png',0),(618,3,'2019-08-16 14:29:31','2019-08-16 14:29:31','','image (1)','','inherit','open','closed','','image-1','','','2019-08-16 14:29:31','2019-08-16 14:29:31','',337,'http://royaldigital.labcp.co/app/uploads/2019/08/image-1.png',0,'attachment','image/png',0),(626,3,'2019-08-16 17:02:31','2019-08-16 17:02:31','','Let\'s chat about it','','inherit','closed','closed','','397-autosave-v1','','','2019-08-16 17:02:31','2019-08-16 17:02:31','',397,'http://royaldigital.labcp.co/397-autosave-v1/',0,'revision','',0),(628,1,'2019-08-16 17:30:40','2019-08-16 17:30:40','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-16 17:30:40','2019-08-16 17:30:40','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(630,1,'2019-08-16 20:00:38','2019-08-16 20:00:38','a:12:{s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"Link\";s:4:\"Link\";s:6:\"Vídeo\";s:6:\"Vídeo\";}s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:13:\"default_value\";s:0:\"\";s:6:\"layout\";s:8:\"vertical\";s:13:\"return_format\";s:5:\"value\";s:17:\"save_other_choice\";i:0;}','Seletc Type Link','seletc_type_link','publish','closed','closed','','field_5d57093fdc431','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=630',17,'acf-field','',0),(631,1,'2019-08-16 20:00:38','2019-08-16 20:00:38','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5d57093fdc431\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"Vídeo\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Post Image Left ID Video','post_image_left_id_video','publish','closed','closed','','field_5d570987dc432','','','2019-08-16 20:00:38','2019-08-16 20:00:38','',574,'http://royaldigital.labcp.co/?post_type=acf-field&p=631',19,'acf-field','',0),(633,1,'2019-08-16 20:15:13','2019-08-16 20:15:13','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-16 20:15:13','2019-08-16 20:15:13','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(634,1,'2019-08-16 20:17:03','2019-08-16 20:17:03','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-16 20:17:03','2019-08-16 20:17:03','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(635,1,'2019-08-16 20:27:35','2019-08-16 20:27:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subtitle hero','subtitle_hero','publish','closed','closed','','field_5d5711764ff01','','','2019-08-16 20:27:35','2019-08-16 20:27:35','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=635',2,'acf-field','',0),(636,1,'2019-08-16 20:28:25','2019-08-16 20:28:25','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:6;s:3:\"max\";i:6;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Hero Section Links','hero_section_links','publish','closed','closed','','field_5d5711cf21851','','','2019-08-16 20:29:37','2019-08-16 20:29:37','',36,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=636',3,'acf-field','',0),(637,1,'2019-08-16 20:29:37','2019-08-16 20:29:37','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Hero Section Link','hero_section_link','publish','closed','closed','','field_5d571219e550b','','','2019-08-16 20:29:37','2019-08-16 20:29:37','',636,'http://royaldigital.labcp.co/?post_type=acf-field&p=637',0,'acf-field','',0),(638,1,'2019-08-16 20:29:37','2019-08-16 20:29:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Hero Section Link Title','hero_section_link_title','publish','closed','closed','','field_5d571227e550c','','','2019-08-16 20:29:37','2019-08-16 20:29:37','',636,'http://royaldigital.labcp.co/?post_type=acf-field&p=638',1,'acf-field','',0),(639,1,'2019-08-16 20:37:46','2019-08-16 20:37:46','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-16 20:37:46','2019-08-16 20:37:46','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(640,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Featured FAQ','_copy','publish','closed','closed','','field_5d571440c652d','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=640',4,'acf-field','',0),(641,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Featured FAQ Title','featured_faq_title','publish','closed','closed','','field_5d57145bc652e','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=641',5,'acf-field','',0),(642,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Featured FAQ Description','featured_faq_description','publish','closed','closed','','field_5d57146bc652f','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=642',6,'acf-field','',0),(643,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Featured FAQ Link','featured_faq_link','publish','closed','closed','','field_5d57147ec6530','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=643',7,'acf-field','',0),(644,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:4;s:3:\"max\";i:4;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Popular Features Links','popular_features_links','publish','closed','closed','','field_5d5714d1c6531','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=644',12,'acf-field','',0),(645,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Popular Features Link','popular_features_link','publish','closed','closed','','field_5d5714fbc6532','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',644,'http://royaldigital.labcp.co/?post_type=acf-field&p=645',0,'acf-field','',0),(646,1,'2019-08-16 20:42:09','2019-08-16 20:42:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Popular Features Link Title','popular_features_link_title','publish','closed','closed','','field_5d571514c6533','','','2019-08-16 20:42:09','2019-08-16 20:42:09','',644,'http://royaldigital.labcp.co/?post_type=acf-field&p=646',1,'acf-field','',0),(647,1,'2019-08-16 20:44:23','2019-08-16 20:44:23','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-16 20:44:23','2019-08-16 20:44:23','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(648,1,'2019-08-16 20:46:29','2019-08-16 20:46:29','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-16 20:46:29','2019-08-16 20:46:29','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(659,2,'2019-08-19 15:00:41','2019-08-19 15:00:41','','Independence of the Seas','','inherit','closed','closed','','154-autosave-v1','','','2019-08-19 15:00:41','2019-08-19 15:00:41','',154,'http://royaldigital.labcp.co/154-autosave-v1/',0,'revision','',0),(661,3,'2019-08-19 15:12:35','2019-08-19 15:12:35','','id-ship-exterior-drone','IN, Independence of the Seas, Helicopter Shot, Aerial, 3/4 overhead starboard view, Southampton, SkyPad, FlowRider, Perfect Storm','inherit','open','closed','','id-ship-exterior-drone','','','2019-08-19 15:19:17','2019-08-19 15:19:17','',154,'http://royaldigital.labcp.co/app/uploads/2019/07/id-ship-exterior-drone.jpg',0,'attachment','image/jpeg',0),(663,3,'2019-08-19 15:18:47','2019-08-19 15:18:47','','RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK','ID, Independence of the Seas, Sky Pad, trampoline, VR, jumping, fun, staff attendants, Rock Wall, climbing, ocean horizon in distance,','inherit','open','closed','','rci_id_may2018_jasonlisiewski_skypad_2087_ret_cmyk','','','2019-08-19 15:18:47','2019-08-19 15:18:47','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/RCI_ID_May2018_JasonLisiewski_SkyPad_2087_RET_CMYK.jpg',0,'attachment','image/jpeg',0),(666,3,'2019-08-19 15:22:31','2019-08-19 15:22:31','','EN-enchantment-casino-royale-gambling-bet-venue-opening.jpg','','inherit','open','closed','','en-enchantment-casino-royale-gambling-bet-venue-opening-jpg','','','2019-08-19 15:23:02','2019-08-19 15:23:02','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/EN-enchantment-casino-royale-gambling-bet-venue-opening.jpg',0,'attachment','image/jpeg',0),(667,3,'2019-08-19 15:22:35','2019-08-19 15:22:35','','EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at','','inherit','open','closed','','en-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at','','','2019-08-19 15:22:35','2019-08-19 15:22:35','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/EN-enchantment-center-movement-aerial-ship-exterior-7-o-clock-at-sea.jpg',0,'attachment','image/jpeg',0),(668,3,'2019-08-19 15:22:39','2019-08-19 15:22:39','','EN-enchantment-close-up-7-o-clock-at-sea-aerial','','inherit','open','closed','','en-enchantment-close-up-7-o-clock-at-sea-aerial','','','2019-08-19 15:22:39','2019-08-19 15:22:39','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/EN-enchantment-close-up-7-o-clock-at-sea-aerial.jpg',0,'attachment','image/jpeg',0),(669,3,'2019-08-19 15:22:43','2019-08-19 15:22:43','','EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-se','','inherit','open','closed','','en-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-se','','','2019-08-19 15:22:43','2019-08-19 15:22:43','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/EN-enchantment-sailing-ship-shot-5-o-clock-exterior-aerial-at-sea.jpg',0,'attachment','image/jpeg',0),(670,3,'2019-08-19 15:22:48','2019-08-19 15:22:48','','EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids.jpg','','inherit','open','closed','','en-enchantment-sunset-beautiful-deck-main-pool-splash-kids-jpg','','','2019-08-19 15:59:54','2019-08-19 15:59:54','',151,'http://royaldigital.labcp.co/app/uploads/2019/07/EN-enchantment-sunset-beautiful-deck-main-pool-splash-kids.jpg',0,'attachment','image/jpeg',0),(675,2,'2019-08-19 15:46:25','2019-08-19 15:46:25','','Azamara Pursuit','','inherit','closed','closed','','147-autosave-v1','','','2019-08-19 15:46:25','2019-08-19 15:46:25','',147,'http://royaldigital.labcp.co/147-autosave-v1/',0,'revision','',0),(676,3,'2019-08-19 15:58:28','2019-08-19 15:58:28','','QS-4-o-clock-exterior-aerial-day-brandless','','inherit','open','closed','','qs-4-o-clock-exterior-aerial-day-brandless','','','2019-08-19 15:58:28','2019-08-19 15:58:28','',147,'http://royaldigital.labcp.co/app/uploads/2019/07/QS-4-o-clock-exterior-aerial-day-brandless.jpg',0,'attachment','image/jpeg',0),(677,3,'2019-08-19 15:59:07','2019-08-19 15:59:07','','PR-prime-c-restaurant-primec','','inherit','open','closed','','pr-prime-c-restaurant-primec','','','2019-08-19 15:59:07','2019-08-19 15:59:07','',147,'http://royaldigital.labcp.co/app/uploads/2019/07/PR-prime-c-restaurant-primec.jpg',0,'attachment','image/jpeg',0),(683,2,'2019-08-19 19:29:34','2019-08-19 19:29:34','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-19 19:29:34','2019-08-19 19:29:34','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(688,1,'2019-08-19 19:47:44','2019-08-19 19:47:44',' ','','','publish','closed','closed','','688','','','2019-08-30 21:25:07','2019-08-30 21:25:07','',0,'http://royaldigital.labcp.co/?p=688',2,'nav_menu_item','',0),(696,1,'2019-08-19 20:06:11','2019-08-19 20:06:11','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"audio\";}i:1;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"faq\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','FAQ Content Audio','faq-content-audio','publish','open','open','','group_5d5b0133c9bcf','','','2019-08-19 20:06:42','2019-08-19 20:06:42','',0,'http://royaldigital.labcp.co/?p=696',0,'acf-field-group','',0),(697,1,'2019-08-19 20:06:11','2019-08-19 20:06:11','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Content Audio','content_video','publish','closed','closed','','field_5d5b0133ce030','','','2019-08-19 20:06:42','2019-08-19 20:06:42','',696,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=697',0,'acf-field','',0),(698,1,'2019-08-19 20:06:11','2019-08-19 20:06:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','ID Audio','id_video','publish','closed','closed','','field_5d5b0133ce071','','','2019-08-19 20:06:42','2019-08-19 20:06:42','',696,'http://royaldigital.labcp.co/?post_type=acf-field&#038;p=698',1,'acf-field','',0),(699,3,'2019-08-19 20:33:04','2019-08-19 20:33:04','','24361-shore-exproduct-image','','inherit','open','closed','','24361-shore-exproduct-image','','','2019-08-19 20:33:04','2019-08-19 20:33:04','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/24361-shore-exproduct-image.jpg',0,'attachment','image/jpeg',0),(714,2,'2019-08-21 14:31:18','2019-08-21 14:31:18','','Anthem of the Seas','','publish','closed','closed','','anthem-of-the-seas','','','2019-09-09 12:59:30','2019-09-09 12:59:30','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=714',0,'ships','',0),(715,2,'2019-08-20 14:33:03','2019-08-20 14:33:03','','KD_AnthemOfTheSeas_Top_747x2048','','inherit','open','closed','','kd_anthemoftheseas_top_747x2048','','','2019-08-20 14:33:03','2019-08-20 14:33:03','',714,'http://royaldigital.labcp.co/app/uploads/2019/08/KD_AnthemOfTheSeas_Top_747x2048.png',0,'attachment','image/png',0),(728,1,'2019-08-21 20:58:54','2019-08-21 20:58:54','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-21 20:58:54','2019-08-21 20:58:54','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(729,1,'2019-08-21 21:04:57','2019-08-21 21:04:57','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-21 21:04:57','2019-08-21 21:04:57','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(739,3,'2019-08-22 14:08:45','2019-08-22 14:08:45','','NicePng_celebrity-png_870439','','inherit','open','closed','','nicepng_celebrity-png_870439','','','2019-08-22 14:09:15','2019-08-22 14:09:15','',141,'http://royaldigital.labcp.co/app/uploads/2019/08/NicePng_celebrity-png_870439.png',0,'attachment','image/png',0),(775,1,'2019-08-22 20:33:58','2019-08-22 20:33:58','','Royal Caribbean','','inherit','closed','closed','','144-autosave-v1','','','2019-08-22 20:33:58','2019-08-22 20:33:58','',144,'http://royaldigital.labcp.co/144-autosave-v1/',0,'revision','',0),(779,1,'2019-08-22 20:34:37','2019-08-22 20:34:37','','r_royal','','inherit','open','closed','','r_royal','','','2019-08-22 20:34:37','2019-08-22 20:34:37','',144,'http://royaldigital.labcp.co/app/uploads/2019/07/r_royal.png',0,'attachment','image/png',0),(780,1,'2019-08-22 20:34:39','2019-08-22 20:34:39','','r_azamara','','inherit','open','closed','','r_azamara','','','2019-08-22 20:34:39','2019-08-22 20:34:39','',144,'http://royaldigital.labcp.co/app/uploads/2019/07/r_azamara.png',0,'attachment','image/png',0),(781,1,'2019-08-22 20:34:41','2019-08-22 20:34:41','','r_celebrity','','inherit','open','closed','','r_celebrity','','','2019-08-22 20:34:41','2019-08-22 20:34:41','',144,'http://royaldigital.labcp.co/app/uploads/2019/07/r_celebrity.png',0,'attachment','image/png',0),(785,1,'2019-08-26 20:39:44','2019-08-26 20:39:44','','KD_Edge_top_747x2048 (1)','','inherit','open','closed','','kd_edge_top_747x2048-1','','','2019-08-26 20:39:44','2019-08-26 20:39:44','',714,'http://royaldigital.labcp.co/app/uploads/2019/08/KD_Edge_top_747x2048-1.png',0,'attachment','image/png',0),(787,1,'2019-08-27 21:14:21','2019-08-27 21:14:21','','celebrity','','inherit','open','closed','','celebrity-2','','','2019-08-27 21:14:21','2019-08-27 21:14:21','',88,'http://royaldigital.labcp.co/app/uploads/2019/07/celebrity.svg',0,'attachment','image/svg',0),(788,1,'2019-08-27 21:14:29','2019-08-27 21:14:29','','royal','','inherit','open','closed','','royal','','','2019-08-27 21:14:29','2019-08-27 21:14:29','',144,'http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg',0,'attachment','image/svg',0),(789,1,'2019-08-27 21:14:36','2019-08-27 21:14:36','','azamara','','inherit','open','closed','','azamara-2','','','2019-08-27 21:14:36','2019-08-27 21:14:36','',143,'http://royaldigital.labcp.co/app/uploads/2019/07/azamara.svg',0,'attachment','image/svg',0),(790,1,'2019-08-28 13:21:54','2019-08-28 13:21:54','','group (2)','','inherit','open','closed','','group-2','','','2019-08-28 13:21:54','2019-08-28 13:21:54','',144,'http://royaldigital.labcp.co/app/uploads/2019/07/group-2.svg',0,'attachment','image/svg',0),(791,2,'2019-08-28 14:04:30','2019-08-28 14:04:30','','CEL_EXCALIBUR EDGE APRIL2019_MC_C0014.MP4.00_00_00_02.Still003','','inherit','open','closed','','cel_excalibur-edge-april2019_mc_c0014-mp4-00_00_00_02-still003','','','2019-08-28 14:04:30','2019-08-28 14:04:30','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_02.Still003.jpg',0,'attachment','image/jpeg',0),(792,2,'2019-08-28 14:04:35','2019-08-28 14:04:35','','CEL_EXCALIBUR EDGE APRIL2019_MC_C0014.MP4.00_00_00_04.Still002','','inherit','open','closed','','cel_excalibur-edge-april2019_mc_c0014-mp4-00_00_00_04-still002','','','2019-08-28 14:04:35','2019-08-28 14:04:35','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_00_04.Still002.jpg',0,'attachment','image/jpeg',0),(793,2,'2019-08-28 14:04:40','2019-08-28 14:04:40','','CEL_EXCALIBUR EDGE APRIL2019_MC_C0014.MP4.00_00_01_03.Still001','','inherit','open','closed','','cel_excalibur-edge-april2019_mc_c0014-mp4-00_00_01_03-still001','','','2019-08-28 14:04:40','2019-08-28 14:04:40','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001.jpg',0,'attachment','image/jpeg',0),(794,2,'2019-08-28 14:04:46','2019-08-28 14:04:46','','CEL_EXCALIBUR EDGE APRIL2019_MC_C0014.MP4.00_00_01_03.Still004','','inherit','open','closed','','cel_excalibur-edge-april2019_mc_c0014-mp4-00_00_01_03-still004','','','2019-08-28 14:04:46','2019-08-28 14:04:46','',0,'http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg',0,'attachment','image/jpeg',0),(795,2,'2019-08-28 14:05:15','2019-08-28 14:05:15','<!-- wp:paragraph -->\n<p>Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->','Royal Caribbean expedites boarding','','publish','open','open','','royal-caribbean-streamlines-boarding','','','2019-09-11 18:28:15','2019-09-11 18:28:15','',0,'http://royaldigital.labcp.co/?p=795',0,'post','',0),(796,2,'2019-08-28 14:06:26','2019-08-28 14:06:26','<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Friction-free arrival will be piloted starting in the second half of next year in the U.S.</p>\n<!-- /wp:paragraph -->','Royal Caribbean streamlines boarding','','inherit','closed','closed','','795-revision-v1','','','2019-08-28 14:06:26','2019-08-28 14:06:26','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(797,2,'2019-08-28 14:06:27','2019-08-28 14:06:27','<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Friction-free arrival will be piloted starting in the second half of next year in the U.S.</p>\n<!-- /wp:paragraph -->','Royal Caribbean streamlines boarding','','inherit','closed','closed','','795-revision-v1','','','2019-08-28 14:06:27','2019-08-28 14:06:27','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(798,2,'2019-08-28 14:07:49','2019-08-28 14:07:49','<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Friction-free arrival will be piloted starting in the second half of next year in the U.S.</p>\n<!-- /wp:paragraph -->','Royal Caribbean streamlines boarding','','inherit','closed','closed','','795-revision-v1','','','2019-08-28 14:07:49','2019-08-28 14:07:49','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(800,2,'2019-08-28 14:08:17','2019-08-28 14:08:17','<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->','Royal Caribbean streamlines boarding','','inherit','closed','closed','','795-revision-v1','','','2019-08-28 14:08:17','2019-08-28 14:08:17','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(801,1,'2019-08-28 18:37:24','2019-08-28 18:37:24','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-28 18:37:24','2019-08-28 18:37:24','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(804,2,'2019-09-09 15:35:02','2019-09-09 15:35:02','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>When can I check in to my cruise?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','publish','open','open','','what-you-need-to-know-before-you-go','','','2019-09-19 17:09:31','2019-09-19 17:09:31','',0,'http://royaldigital.labcp.co/?p=804',0,'post','',0),(805,2,'2019-08-29 18:13:50','2019-08-29 18:13:50','<!-- wp:paragraph -->\n<p>At home</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>How do you download the app</li><li>How do you set up a Guest Account?</li><li>Link your sailing</li><li>Make sure other party passengers create their own guest account (13+ years old)</li><li>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship wifi once onboard</li><li>Start booking shore excursions</li><li>Start making reservations</li><li>Enjoy features within the app</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-08-29 18:13:50','2019-08-29 18:13:50','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(808,4,'2019-08-29 20:46:48','2019-08-29 20:46:48','','Spectrum_Daytime_Delivery-v04_1095x4480','','inherit','open','closed','','spectrum_daytime_delivery-v04_1095x4480','','','2019-08-29 20:47:45','2019-08-29 20:47:45','',162,'http://royaldigital.labcp.co/app/uploads/2019/08/Spectrum_Daytime_Delivery-v04_1095x4480.png',0,'attachment','image/png',0),(811,2,'2019-08-30 13:41:03','2019-08-30 13:41:03','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 13:41:03','2019-08-30 13:41:03','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(812,2,'2019-08-30 13:46:37','2019-08-30 13:46:37','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 13:46:37','2019-08-30 13:46:37','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(819,2,'2019-08-30 14:39:47','2019-08-30 14:39:47','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 14:39:47','2019-08-30 14:39:47','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(820,2,'2019-08-30 14:42:39','2019-08-30 14:42:39','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 14:42:39','2019-08-30 14:42:39','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(823,2,'2019-08-30 15:01:05','2019-08-30 15:01:05','<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->','Royal Caribbean expedites boarding','','inherit','closed','closed','','795-revision-v1','','','2019-08-30 15:01:05','2019-08-30 15:01:05','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(824,2,'2019-08-30 15:01:34','2019-08-30 15:01:34','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a selfie','','inherit','closed','closed','','312-revision-v1','','','2019-08-30 15:01:34','2019-08-30 15:01:34','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(828,1,'2019-08-30 19:35:57','2019-08-30 19:35:57','','All','','publish','closed','closed','','all','','','2019-08-30 19:35:57','2019-08-30 19:35:57','',203,'http://royaldigital.labcp.co/?page_id=828',0,'page','',0),(829,1,'2019-08-30 19:35:57','2019-08-30 19:35:57','','All','','inherit','closed','closed','','828-revision-v1','','','2019-08-30 19:35:57','2019-08-30 19:35:57','',828,'http://royaldigital.labcp.co/828-revision-v1/',0,'revision','',0),(830,1,'2019-08-30 20:42:19','2019-08-30 20:42:19','','All','','publish','closed','closed','','all','','','2019-08-30 20:42:19','2019-08-30 20:42:19','',271,'http://royaldigital.labcp.co/?page_id=830',0,'page','',0),(831,1,'2019-08-30 20:42:19','2019-08-30 20:42:19','','All','','inherit','closed','closed','','830-revision-v1','','','2019-08-30 20:42:19','2019-08-30 20:42:19','',830,'http://royaldigital.labcp.co/830-revision-v1/',0,'revision','',0),(833,1,'2019-08-30 21:29:48','2019-08-30 21:29:48','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 21:29:48','2019-08-30 21:29:48','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(834,1,'2019-08-30 21:30:04','2019-08-30 21:30:04','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-08-30 21:30:04','2019-08-30 21:30:04','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(835,1,'2019-08-30 22:44:27','2019-08-30 22:44:27','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-08-30 22:44:27','2019-08-30 22:44:27','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(842,1,'2019-09-03 20:03:45','2019-09-03 20:03:45','','Media','','publish','closed','closed','','media','','','2019-09-03 20:03:45','2019-09-03 20:03:45','',271,'http://royaldigital.labcp.co/?page_id=842',0,'page','',0),(843,1,'2019-09-03 20:03:45','2019-09-03 20:03:45','','Media','','inherit','closed','closed','','842-revision-v1','','','2019-09-03 20:03:45','2019-09-03 20:03:45','',842,'http://royaldigital.labcp.co/842-revision-v1/',0,'revision','',0),(844,1,'2019-09-03 20:04:08','2019-09-03 20:04:08','','Media','','publish','closed','closed','','media','','','2019-09-03 20:04:08','2019-09-03 20:04:08','',203,'http://royaldigital.labcp.co/?page_id=844',0,'page','',0),(845,1,'2019-09-03 20:04:08','2019-09-03 20:04:08','','Media','','inherit','closed','closed','','844-revision-v1','','','2019-09-03 20:04:08','2019-09-03 20:04:08','',844,'http://royaldigital.labcp.co/844-revision-v1/',0,'revision','',0),(849,2,'2019-09-09 13:54:03','2019-09-09 13:54:03','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 13:54:03','2019-09-09 13:54:03','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(850,2,'2019-09-09 13:55:04','2019-09-09 13:55:04','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 13:55:04','2019-09-09 13:55:04','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(851,2,'2019-09-09 13:55:46','2019-09-09 13:55:46','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 13:55:46','2019-09-09 13:55:46','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(852,2,'2019-09-09 13:57:32','2019-09-09 13:57:32','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Royal Caribbean</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-09 13:57:32','2019-09-09 13:57:32','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(853,2,'2019-09-09 13:59:14','2019-09-09 13:59:14','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Pursuit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-09 13:59:14','2019-09-09 13:59:14','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(854,2,'2019-09-09 14:01:09','2019-09-09 14:01:09','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Adventure of the Seas®</li><li>Allure of the Seas®</li><li>Brilliance of the Seas®</li><li>Enchantment of the Seas®</li><li>Harmony of the Seas®</li><li>Independence of the Seas®</li><li>Liberty of the Seas</li><li>Majesty of the Seas®</li><li>Mariner of the Seas®</li><li>Navigator of the Seas®</li><li>Oasis of the Seas®</li><li>Quantum of the Seas®</li><li>Serenade of the Seas®</li><li>Spectrum of the Seas®</li><li>Symphony of the Seas®</li><li>Vision of the Seas®</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Constellation</li><li>Edge</li><li>Equinox</li><li>Millennium</li><li>Reflection</li><li>Summit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Pursuit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-09 14:01:09','2019-09-09 14:01:09','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(855,2,'2019-09-09 14:02:19','2019-09-09 14:02:19','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:02:19','2019-09-09 14:02:19','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(856,2,'2019-09-09 14:04:52','2019-09-09 14:04:52','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:04:52','2019-09-09 14:04:52','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(857,2,'2019-09-09 14:08:28','2019-09-09 14:08:28','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:08:28','2019-09-09 14:08:28','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(858,2,'2019-09-09 14:31:42','2019-09-09 14:31:42','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 14:31:42','2019-09-09 14:31:42','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(859,2,'2019-09-09 14:38:31','2019-09-09 14:38:31','<!-- wp:paragraph -->\n<p>At home</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>How do you download the app</li><li>How do you set up a Guest Account?</li><li>Link your sailing</li><li>Make sure other party passengers create their own guest account (13+ years old)</li><li>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship WiFi once onboard</li><li>Start booking shore excursions</li><li>Start making reservations</li><li>Enjoy features within the app</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 14:38:31','2019-09-09 14:38:31','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(860,2,'2019-09-09 14:44:47','2019-09-09 14:44:47','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:44:47','2019-09-09 14:44:47','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(861,2,'2019-09-09 14:45:21','2019-09-09 14:45:21','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:45:21','2019-09-09 14:45:21','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(862,2,'2019-09-09 14:45:46','2019-09-09 14:45:46','','Screen Shot 2019-09-06 at 4.40.23 PM','','inherit','open','closed','','screen-shot-2019-09-06-at-4-40-23-pm','','','2019-09-09 14:46:14','2019-09-09 14:46:14','',17,'http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-06-at-4.40.23-PM.png',0,'attachment','image/png',0),(863,2,'2019-09-09 14:46:14','2019-09-09 14:46:14','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 14:46:14','2019-09-09 14:46:14','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(864,2,'2019-09-09 14:49:24','2019-09-09 14:49:24','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 14:49:24','2019-09-09 14:49:24','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(865,2,'2019-09-09 14:50:08','2019-09-09 14:50:08','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 14:50:08','2019-09-09 14:50:08','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(866,2,'2019-09-09 14:56:18','2019-09-09 14:56:18','','Image-1','','inherit','open','closed','','image-1-2','','','2019-09-09 16:37:42','2019-09-09 16:37:42','',889,'http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg',0,'attachment','image/jpeg',0),(867,2,'2019-09-09 15:13:06','2019-09-09 15:13:06','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise. Before you embark, here are some things you should keep in mind to enhance your vacation to the maximum. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At home</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>How do you download the app - Google Play or App Store. Download before you arrive for your cruise. </li><li>How do you set up a Guest Account? - Link to article. </li><li>Link your sailing. If your email is associated, that should happen automatically. </li><li>Traveling with multiple parties, reservations should be linked in order to most easily plan and coordinate activities. </li><li>Make sure other party passengers create their own guest account in order to use the app (13+ years old). Kids under 13 do not need to worry since they are on the reservation. </li><li>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours is the deadline.</li><li>Review Hints and Tips link on your app. To get there...on any sailing that appears, go to Day 1 and look for the following screen. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship WiFi once onboard - link to article</li><li>Start booking shore excursions - link to article</li><li>Start making reservations - link to article</li><li>If you are experiencing any difficulties, look for our app help desk. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 15:13:06','2019-09-09 15:13:06','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(868,2,'2019-09-09 15:24:04','2019-09-09 15:24:04','','ZY-Video-2019-07-11-00000080.00_00_05_05.Still002','','inherit','open','closed','','zy-video-2019-07-11-00000080-00_00_05_05-still002','','','2019-09-09 15:24:04','2019-09-09 15:24:04','',0,'http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_05_05.Still002.jpg',0,'attachment','image/jpeg',0),(869,2,'2019-09-09 15:24:15','2019-09-09 15:24:15','','ZY-Video-2019-07-11-00000080.00_00_14_06.Still008','','inherit','open','closed','','zy-video-2019-07-11-00000080-00_00_14_06-still008','','','2019-09-10 18:44:26','2019-09-10 18:44:26','',271,'http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008.jpg',0,'attachment','image/jpeg',0),(870,2,'2019-09-09 15:24:20','2019-09-09 15:24:20','','ZY-Video-2019-07-11-00000080.00_00_28_18.Still003','','inherit','open','closed','','zy-video-2019-07-11-00000080-00_00_28_18-still003','','','2019-09-09 15:24:20','2019-09-09 15:24:20','',0,'http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_28_18.Still003.jpg',0,'attachment','image/jpeg',0),(871,2,'2019-09-09 15:27:45','2019-09-09 15:27:45','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 15:27:45','2019-09-09 15:27:45','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(872,2,'2019-09-09 15:31:00','2019-09-09 15:31:00','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 15:31:00','2019-09-09 15:31:00','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(873,2,'2019-09-09 15:33:05','2019-09-09 15:33:05','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 15:33:05','2019-09-09 15:33:05','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(874,2,'2019-09-09 15:35:02','2019-09-09 15:35:02','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise. Before you embark, here are some things you should keep in mind to enhance your vacation to the maximum. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At home</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>How do you download the app - Google Play or App Store. Download before you arrive for your cruise. </li><li>How do you set up a Guest Account? - Link to article. </li><li>Link your sailing. If your email is associated, that should happen automatically. </li><li>Traveling with multiple parties, reservations should be linked in order to most easily plan and coordinate activities. </li><li>Make sure other party passengers create their own guest account in order to use the app (13+ years old). Kids under 13 do not need to worry since they are on the reservation. </li><li>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours is the deadline.</li><li>Review Hints and Tips link on your app. To get there...on any sailing that appears, go to Day 1 and look for the following screen. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship WiFi once onboard - link to article</li><li>Start booking shore excursions - link to article</li><li>Start making reservations - link to article</li><li>If you are experiencing any difficulties, look for our app help desk. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 15:35:02','2019-09-09 15:35:02','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(876,2,'2019-09-09 15:41:38','2019-09-09 15:41:38','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>At home</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do you download the app? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do you set up a Guest Account? - Link to article. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Link your sailing. If your email is associated, that should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Traveling with multiple parties, reservations should be linked in order to most easily plan and coordinate activities. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure other party passengers create their own guest account in order to use the app (13+ years old). Kids under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours is the deadline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Review Hints and Tips link on your app. To get there...on any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship WiFi once onboard - link to article</li><li>Start booking shore excursions - link to article</li><li>Start making reservations - link to article</li><li>If you are experiencing any difficulties, look for our app help desk. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 15:41:38','2019-09-09 15:41:38','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(877,2,'2019-09-09 15:41:52','2019-09-09 15:41:52','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 15:41:52','2019-09-09 15:41:52','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(878,2,'2019-09-09 15:44:49','2019-09-09 15:44:49','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do you set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Link your sailing. If your email is associated, that should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Traveling with multiple parties, reservations should be linked in order to most easily plan and coordinate activities. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure other party passengers create their own guest account in order to use the app (13+ years old). Kids under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in (up to 90 days in advance) all guests in your party to board more quickly on your day of sailing. Up to 48 hours is the deadline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Review Hints and Tips link on your app. To get there...on any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Connect to ship WiFi once onboard - link to article</li><li>Start booking shore excursions - link to article</li><li>Start making reservations - link to article</li><li>If you are experiencing any difficulties, look for our app help desk. </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 15:44:49','2019-09-09 15:44:49','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(880,2,'2019-09-09 16:00:34','2019-09-09 16:00:34','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 16:00:34','2019-09-09 16:00:34','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(881,2,'2019-09-09 16:02:52','2019-09-09 16:02:52','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboar</strong>d</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 16:02:52','2019-09-09 16:02:52','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(882,2,'2019-09-09 16:03:34','2019-09-09 16:03:34','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboar</strong>d</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-09 16:03:34','2019-09-09 16:03:34','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(883,2,'2019-09-09 16:09:41','2019-09-09 16:09:41','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 16:09:41','2019-09-09 16:09:41','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(884,2,'2019-09-09 16:15:28','2019-09-09 16:15:28','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 16:15:28','2019-09-09 16:15:28','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(885,2,'2019-09-09 16:18:02','2019-09-09 16:18:02','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 16:18:02','2019-09-09 16:18:02','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(886,2,'2019-09-09 16:18:37','2019-09-09 16:18:37','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 16:18:37','2019-09-09 16:18:37','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(887,2,'2019-09-09 16:25:52','2019-09-09 16:25:52','','ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2','','inherit','open','closed','','zy-video-2019-07-11-00000080-00_00_04_09-still002-2','','','2019-09-09 16:25:52','2019-09-09 16:25:52','',212,'http://royaldigital.labcp.co/app/uploads/2019/07/ZY-Video-2019-07-11-00000080.00_00_04_09.Still002-2.jpg',0,'attachment','image/jpeg',0),(889,2,'2019-09-09 16:37:42','2019-09-09 16:37:42','','What do I need to know before my sailing?','','publish','closed','closed','','what-do-i-need-to-know-before-my-sailing','','','2019-09-30 13:56:53','2019-09-30 13:56:53','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=889',0,'faq','',0),(890,2,'2019-09-09 16:42:58','2019-09-09 16:42:58','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 16:42:58','2019-09-09 16:42:58','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(892,2,'2019-09-09 16:47:50','2019-09-09 16:47:50','','Screen Shot 2019-07-03 at 11.36.37 AM','','inherit','open','closed','','screen-shot-2019-07-03-at-11-36-37-am','','','2019-09-09 16:47:50','2019-09-09 16:47:50','',0,'http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-07-03-at-11.36.37-AM.jpg',0,'attachment','image/jpeg',0),(893,2,'2019-09-09 16:49:12','2019-09-09 16:49:12','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-09 16:49:12','2019-09-09 16:49:12','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(894,2,'2019-09-09 16:52:49','2019-09-09 16:52:49','','QS-exterior-aerial-3-o-clock-brandless','','inherit','open','closed','','qs-exterior-aerial-3-o-clock-brandless','','','2019-09-09 16:53:07','2019-09-09 16:53:07','',143,'http://royaldigital.labcp.co/app/uploads/2019/09/QS-exterior-aerial-3-o-clock-brandless.jpg',0,'attachment','image/jpeg',0),(895,1,'2019-09-09 17:46:56','2019-09-09 17:46:56','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}i:1;a:3:{s:5:\"param\";s:11:\"post_format\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"standard\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Assets','assets','publish','open','open','','group_5d72c2b7daefc','','','2019-09-13 14:14:11','2019-09-13 14:14:11','',0,'http://royaldigital.labcp.co/?p=895',0,'acf-field-group','',0),(896,1,'2019-09-09 17:46:56','2019-09-09 17:46:56','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Media assets','media_assets','publish','closed','closed','','field_5d72c2c090478','','','2019-09-09 17:46:56','2019-09-09 17:46:56','',895,'http://royaldigital.labcp.co/?post_type=acf-field&p=896',0,'acf-field','',0),(897,1,'2019-09-09 17:46:56','2019-09-09 17:46:56','a:10:{s:4:\"type\";s:4:\"file\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:8:\"min_size\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Archive','archive-list','publish','closed','closed','','field_5d72c3139047a','','','2019-09-09 17:46:56','2019-09-09 17:46:56','',896,'http://royaldigital.labcp.co/?post_type=acf-field&p=897',0,'acf-field','',0),(898,1,'2019-09-09 17:46:56','2019-09-09 17:46:56','a:10:{s:4:\"type\";s:4:\"file\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:8:\"min_size\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:3:\"zip\";}','Media assets archive ZIP','media_assets_archive_zip','publish','closed','closed','','field_5d768ad62c946','','','2019-09-09 17:46:56','2019-09-09 17:46:56','',895,'http://royaldigital.labcp.co/?post_type=acf-field&p=898',1,'acf-field','',0),(899,2,'2019-09-09 18:33:40','2019-09-09 18:33:40','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 18:33:40','2019-09-09 18:33:40','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(900,2,'2019-09-09 18:40:51','2019-09-09 18:40:51','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-09 18:40:51','2019-09-09 18:40:51','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(901,2,'2019-09-09 19:51:41','2019-09-09 19:51:41','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li>Quantum of the Seas®</li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li>Summit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','What our App can do','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-09 19:51:41','2019-09-09 19:51:41','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(902,2,'2019-09-09 20:04:56','2019-09-09 20:04:56','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li>Quantum of the Seas®</li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li>Summit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our app: what it does and which ships have it','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-09 20:04:56','2019-09-09 20:04:56','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(903,2,'2019-09-10 13:02:33','2019-09-10 13:02:33','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li>Quantum of the Seas®</li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li>Summit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app: what it does and which ships have it','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-10 13:02:33','2019-09-10 13:02:33','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(904,1,'2019-09-10 13:48:05','2019-09-10 13:48:05','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link explore our fleet','link_explore_our_fleet','publish','closed','closed','','field_5d77a90f09145','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=904',8,'acf-field','',0),(905,1,'2019-09-10 13:48:05','2019-09-10 13:48:05','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image explore our fleet','image_explore_our_fleet','publish','closed','closed','','field_5d77a96009146','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=905',9,'acf-field','',0),(906,1,'2019-09-10 13:48:05','2019-09-10 13:48:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title explore our fleet','title_explore_our_fleet','publish','closed','closed','','field_5d77a97809147','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=906',10,'acf-field','',0),(907,1,'2019-09-10 13:48:05','2019-09-10 13:48:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subtitle explore our fleet','subtitle_explore_our_fleet','publish','closed','closed','','field_5d77a98709148','','','2019-09-10 13:48:05','2019-09-10 13:48:05','',36,'http://royaldigital.labcp.co/?post_type=acf-field&p=907',11,'acf-field','',0),(908,1,'2019-09-10 13:49:12','2019-09-10 13:49:12','','fleet','','inherit','open','closed','','fleet','','','2019-09-10 13:49:12','2019-09-10 13:49:12','',17,'http://royaldigital.labcp.co/app/uploads/2019/09/fleet.png',0,'attachment','image/png',0),(909,1,'2019-09-10 13:49:32','2019-09-10 13:49:32','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-10 13:49:32','2019-09-10 13:49:32','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(911,2,'2019-09-10 18:06:12','2019-09-10 18:06:12','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-10 18:06:12','2019-09-10 18:06:12','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(912,2,'2019-09-10 18:19:30','2019-09-10 18:19:30','','Summit','','publish','closed','closed','','summit','','','2019-09-10 19:22:49','2019-09-10 19:22:49','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=912',0,'ships','',0),(913,2,'2019-09-10 18:29:11','2019-09-10 18:29:11','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li>Quantum of the Seas®</li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li><a href=\"http://royaldigital.labcp.co/ships/summit/\">Summit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app: what it does and which ships have it','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-10 18:29:11','2019-09-10 18:29:11','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(914,2,'2019-09-10 18:31:21','2019-09-10 18:31:21','','Summit sailing in the water.','Summit sailing in the water.','inherit','open','closed','','summit-sailing-in-the-water','','','2019-09-10 18:31:43','2019-09-10 18:31:43','',912,'http://royaldigital.labcp.co/app/uploads/2019/09/SM-post-dry-dock-7-o-clock-exterior-aerial-aerials.jpg',0,'attachment','image/jpeg',0),(915,2,'2019-09-10 18:43:03','2019-09-10 18:43:03','','ZY-Video-2019-07-11-00000080.00_00_22_04.Still002','','inherit','open','closed','','zy-video-2019-07-11-00000080-00_00_22_04-still002','','','2019-09-10 18:43:27','2019-09-10 18:43:27','',271,'http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_22_04.Still002.jpg',0,'attachment','image/jpeg',0),(916,2,'2019-09-10 18:43:27','2019-09-10 18:43:27','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-10 18:43:27','2019-09-10 18:43:27','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(917,2,'2019-09-10 18:44:26','2019-09-10 18:44:26','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-10 18:44:26','2019-09-10 18:44:26','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(918,2,'2019-09-10 18:45:01','2019-09-10 18:45:01','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-10 18:45:01','2019-09-10 18:45:01','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(919,2,'2019-09-10 18:45:53','2019-09-10 18:45:53','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-10 18:45:53','2019-09-10 18:45:53','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(920,2,'2019-09-10 18:48:05','2019-09-10 18:48:05','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-10 18:48:05','2019-09-10 18:48:05','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(921,2,'2019-09-10 18:48:18','2019-09-10 18:48:18','','1565293392977','','inherit','open','closed','','1565293392977','','','2019-09-10 18:48:43','2019-09-10 18:48:43','',144,'http://royaldigital.labcp.co/app/uploads/2019/09/1565293392977.png',0,'attachment','image/png',0),(922,2,'2019-09-10 18:54:25','2019-09-10 18:54:25','','1565293407614','','inherit','open','closed','','1565293407614','','','2019-09-10 18:54:42','2019-09-10 18:54:42','',144,'http://royaldigital.labcp.co/app/uploads/2019/09/1565293407614.png',0,'attachment','image/png',0),(923,2,'2019-09-10 19:21:45','2019-09-10 19:21:45','','KD_ConstellationOfTheSeas_Top_747x2048','','inherit','open','closed','','kd_constellationoftheseas_top_747x2048','','','2019-09-10 19:22:23','2019-09-10 19:22:23','',108,'http://royaldigital.labcp.co/app/uploads/2019/09/KD_ConstellationOfTheSeas_Top_747x2048.png',0,'attachment','image/png',0),(924,2,'2019-09-10 19:21:47','2019-09-10 19:21:47','','KD_Equinox_Top_747x2048','','inherit','open','closed','','kd_equinox_top_747x2048','','','2019-09-10 19:23:40','2019-09-10 19:23:40','',113,'http://royaldigital.labcp.co/app/uploads/2019/09/KD_Equinox_Top_747x2048.png',0,'attachment','image/png',0),(925,2,'2019-09-10 19:21:49','2019-09-10 19:21:49','','KD_ReflectionOfTheSeas_Top_747x2048','','inherit','open','closed','','kd_reflectionoftheseas_top_747x2048','','','2019-09-10 19:23:17','2019-09-10 19:23:17','',141,'http://royaldigital.labcp.co/app/uploads/2019/09/KD_ReflectionOfTheSeas_Top_747x2048.png',0,'attachment','image/png',0),(926,2,'2019-09-10 19:21:56','2019-09-10 19:21:56','','Quantum_Daytime_Delivery-v01_747x2048','','inherit','open','closed','','quantum_daytime_delivery-v01_747x2048','','','2019-09-10 19:34:39','2019-09-10 19:34:39','',928,'http://royaldigital.labcp.co/app/uploads/2019/09/Quantum_Daytime_Delivery-v01_747x2048.png',0,'attachment','image/png',0),(928,2,'2019-09-10 19:34:39','2019-09-10 19:34:39','','Quantum of the Seas','','publish','closed','closed','','quantum-of-the-seas','','','2019-09-19 16:50:59','2019-09-19 16:50:59','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=928',0,'ships','',0),(929,2,'2019-09-10 19:34:24','2019-09-10 19:34:24','','QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock','','inherit','open','closed','','qn-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock','','','2019-09-10 19:34:24','2019-09-10 19:34:24','',928,'http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg',0,'attachment','image/jpeg',0),(930,2,'2019-09-10 19:39:03','2019-09-10 19:39:03','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45,\"align\":\"right\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/quantum-of-the-seas/\">Quantum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li><a href=\"http://royaldigital.labcp.co/ships/summit/\">Summit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app: what it does and which ships have it','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-10 19:39:03','2019-09-10 19:39:03','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(931,2,'2019-09-10 20:06:17','2019-09-10 20:06:17','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-10 20:06:17','2019-09-10 20:06:17','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(932,2,'2019-09-10 20:16:05','2019-09-10 20:16:05','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-10 20:16:05','2019-09-10 20:16:05','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(933,2,'2019-09-10 20:18:39','2019-09-10 20:18:39','','KD_Azamara_Pursuit_Top_747x2048','','inherit','open','closed','','kd_azamara_pursuit_top_747x2048','','','2019-09-10 20:18:56','2019-09-10 20:18:56','',147,'http://royaldigital.labcp.co/app/uploads/2019/09/KD_Azamara_Pursuit_Top_747x2048.png',0,'attachment','image/png',0),(934,2,'2019-09-11 13:47:32','2019-09-11 13:47:32','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-11 13:47:32','2019-09-11 13:47:32','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(935,2,'2019-09-11 16:47:39','2019-09-11 16:47:39','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-11 16:47:39','2019-09-11 16:47:39','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(936,2,'2019-09-11 17:22:21','2019-09-11 17:22:21','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-11 17:22:21','2019-09-11 17:22:21','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(938,2,'2019-09-11 18:05:46','2019-09-11 18:05:46','','RC_SeaPass_Front_0919','','inherit','open','closed','','rc_seapass_front_0919','','','2019-09-11 18:06:09','2019-09-11 18:06:09','',889,'http://royaldigital.labcp.co/app/uploads/2019/09/RC_SeaPass_Front_0919.png',0,'attachment','image/png',0),(939,2,'2019-09-11 18:15:30','2019-09-11 18:15:30','','iOS_Native_EA_Platinum','','inherit','open','closed','','ios_native_ea_platinum','','','2019-09-11 18:15:55','2019-09-11 18:15:55','',889,'http://royaldigital.labcp.co/app/uploads/2019/09/iOS_Native_EA_Platinum.png',0,'attachment','image/png',0),(940,2,'2019-09-11 18:17:37','2019-09-11 18:17:37','','RC_SeaPass_Front_0919 (1)','','inherit','open','closed','','rc_seapass_front_0919-1','','','2019-09-11 18:17:37','2019-09-11 18:17:37','',889,'http://royaldigital.labcp.co/app/uploads/2019/09/RC_SeaPass_Front_0919-1.png',0,'attachment','image/png',0),(941,2,'2019-09-11 18:27:42','2019-09-11 18:27:42','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-11 18:27:42','2019-09-11 18:27:42','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(942,2,'2019-09-11 18:28:14','2019-09-11 18:28:14','<!-- wp:paragraph -->\n<p>Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->','Royal Caribbean expedites boarding','','inherit','closed','closed','','795-revision-v1','','','2019-09-11 18:28:14','2019-09-11 18:28:14','',795,'http://royaldigital.labcp.co/795-revision-v1/',0,'revision','',0),(943,2,'2019-09-11 18:31:05','2019-09-11 18:31:05','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-11 18:31:05','2019-09-11 18:31:05','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(944,2,'2019-09-11 18:34:30','2019-09-11 18:34:30','','Screen Shot 2019-09-11 at 2.33.55 PM','','inherit','open','closed','','screen-shot-2019-09-11-at-2-33-55-pm','','','2019-09-11 18:34:30','2019-09-11 18:34:30','',0,'http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-11-at-2.33.55-PM.png',0,'attachment','image/png',0),(945,2,'2019-09-11 18:45:13','2019-09-11 18:45:13','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboar</strong>d</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-11 18:45:13','2019-09-11 18:45:13','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(946,2,'2019-09-11 18:45:37','2019-09-11 18:45:37','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-11 18:45:37','2019-09-11 18:45:37','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(948,2,'2019-09-11 19:34:06','2019-09-11 19:34:06','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/quantum-of-the-seas/\">Quantum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li><a href=\"http://royaldigital.labcp.co/ships/summit/\">Summit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app: what it does and which ships have it','Fusce volutpat est justo, eget porta nisi gravida quis. Proin imperdiet accumsan est, et suscipit quam posuere eget. In fringilla ex turpis, non porttitor velit viverra eget.','inherit','closed','closed','','212-revision-v1','','','2019-09-11 19:34:06','2019-09-11 19:34:06','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(950,2,'2019-09-11 19:59:34','2019-09-11 19:59:34','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Here’s a list of ships where the app is available:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Royal Caribbean</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/adventure/\">Adventure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/anthem-of-the-seas/\">Anthem of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/allure/\">Allure of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/brilliance/\">Brilliance of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/enchantment/\">Enchantment of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/harmony/\">Harmony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/independence/\">Independence of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/liberty/\">Liberty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/majesty/\">Majesty of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/mariner/\">Mariner of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/navigator/\">Navigator of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/oasis/\">Oasis of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/quantum-of-the-seas/\">Quantum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/serenade/\">Serenade of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/spectrum/\">Spectrum of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/symphony/\">Symphony of the Seas®</a></li><li><a href=\"http://royaldigital.labcp.co/ships/vision/\">Vision of the Seas®</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Celebrity</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/our-fleet/\">Constellation</a></li><li><a href=\"http://royaldigital.labcp.co/ships/edge/\">Edge</a></li><li><a href=\"http://royaldigital.labcp.co/ships/lorem-ipsum/\">Equinox</a></li><li><a href=\"http://royaldigital.labcp.co/ships/millenium/\">Millennium</a></li><li><a href=\"http://royaldigital.labcp.co/ships/reflection/\">Reflection</a></li><li><a href=\"http://royaldigital.labcp.co/ships/summit/\">Summit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Azamara</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"http://royaldigital.labcp.co/ships/pursuit/\">Pursuit</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app: what it does and which ships have it','','inherit','closed','closed','','212-revision-v1','','','2019-09-11 19:59:34','2019-09-11 19:59:34','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(951,2,'2019-09-11 20:37:50','2019-09-11 20:37:50','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-11 20:37:50','2019-09-11 20:37:50','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(952,2,'2019-09-12 14:16:41','2019-09-12 14:16:41','','Which ships currently have the app?','','publish','closed','closed','','which-ships-currently-have-the-app','','','2019-09-23 20:56:49','2019-09-23 20:56:49','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=952',0,'faq','',0),(953,2,'2019-09-12 14:17:39','2019-09-12 14:17:39','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-12 14:17:39','2019-09-12 14:17:39','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(954,2,'2019-09-12 14:18:52','2019-09-12 14:18:52','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-12 14:18:52','2019-09-12 14:18:52','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(955,2,'2019-09-12 14:19:59','2019-09-12 14:19:59','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing onboard ships which offer the new Royal Caribbean International app. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All guests can use our app for free onboard. No internet package is required --  just connect to ship Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to ship Wi-Fi so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our free app does more than you may imagine','','inherit','closed','closed','','212-revision-v1','','','2019-09-12 14:19:59','2019-09-12 14:19:59','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(956,2,'2019-09-13 12:48:28','2019-09-13 12:48:28','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 12:48:28','2019-09-13 12:48:28','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(957,2,'2019-09-13 12:52:48','2019-09-13 12:52:48','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 12:52:48','2019-09-13 12:52:48','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(958,2,'2019-09-13 13:26:54','2019-09-13 13:26:54','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 13:26:54','2019-09-13 13:26:54','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(959,2,'2019-09-13 13:30:20','2019-09-13 13:30:20','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 13:30:20','2019-09-13 13:30:20','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(960,2,'2019-09-13 13:55:53','2019-09-13 13:55:53','','Expedited Arrival','','inherit','closed','closed','','381-autosave-v1','','','2019-09-13 13:55:53','2019-09-13 13:55:53','',381,'http://royaldigital.labcp.co/381-autosave-v1/',0,'revision','',0),(961,1,'2019-09-13 13:58:15','2019-09-13 13:58:15','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','URL video featured','url_video_featured_news','publish','closed','closed','','field_5d7ba065745f3','','','2019-09-13 13:58:15','2019-09-13 13:58:15','',207,'http://royaldigital.labcp.co/?post_type=acf-field&p=961',0,'acf-field','',0),(962,2,'2019-09-13 13:58:48','2019-09-13 13:58:48','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 13:58:48','2019-09-13 13:58:48','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(963,2,'2019-09-13 14:01:29','2019-09-13 14:01:29','','Royal Car','','inherit','closed','closed','','380-autosave-v1','','','2019-09-13 14:01:29','2019-09-13 14:01:29','',380,'http://royaldigital.labcp.co/380-autosave-v1/',0,'revision','',0),(964,1,'2019-09-13 14:01:49','2019-09-13 14:01:49','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-13 14:01:49','2019-09-13 14:01:49','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(965,1,'2019-09-13 14:02:52','2019-09-13 14:02:52','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-13 14:02:52','2019-09-13 14:02:52','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(966,1,'2019-09-13 14:02:57','2019-09-13 14:02:57','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-13 14:02:57','2019-09-13 14:02:57','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(967,2,'2019-09-13 14:05:49','2019-09-13 14:05:49','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 14:05:49','2019-09-13 14:05:49','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(968,2,'2019-09-13 14:06:50','2019-09-13 14:06:50','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 14:06:50','2019-09-13 14:06:50','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(969,2,'2019-09-13 14:07:26','2019-09-13 14:07:26','','Help & FAQ’s','','inherit','closed','closed','','271-revision-v1','','','2019-09-13 14:07:26','2019-09-13 14:07:26','',271,'http://royaldigital.labcp.co/271-revision-v1/',0,'revision','',0),(970,1,'2019-09-13 14:09:59','2019-09-13 14:09:59','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-13 14:09:59','2019-09-13 14:09:59','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(971,1,'2019-09-13 14:15:30','2019-09-13 14:15:30','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How soon can I check in after booking?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-13 14:15:30','2019-09-13 14:15:30','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(973,2,'2019-09-13 15:00:11','2019-09-13 15:00:11','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information<br></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 15:00:11','2019-09-13 15:00:11','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(974,2,'2019-09-13 15:00:18','2019-09-13 15:00:18','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 15:00:18','2019-09-13 15:00:18','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(976,2,'2019-09-13 15:32:08','2019-09-13 15:32:08','','Celebrity introduces an innovative new way to experience your cruise.','','inherit','closed','closed','','367-autosave-v1','','','2019-09-13 15:32:08','2019-09-13 15:32:08','',367,'http://royaldigital.labcp.co/367-autosave-v1/',0,'revision','',0),(979,2,'2019-09-13 17:58:20','2019-09-13 17:58:20','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 17:58:20','2019-09-13 17:58:20','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(980,2,'2019-09-13 17:58:21','2019-09-13 17:58:21','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 17:58:21','2019-09-13 17:58:21','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(981,2,'2019-09-13 17:58:54','2019-09-13 17:58:54','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 17:58:54','2019-09-13 17:58:54','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(982,2,'2019-09-13 18:02:28','2019-09-13 18:02:28','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 18:02:28','2019-09-13 18:02:28','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(983,2,'2019-09-13 18:04:36','2019-09-13 18:04:36','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 18:04:36','2019-09-13 18:04:36','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(984,2,'2019-09-13 18:05:59','2019-09-13 18:05:59','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our App','','inherit','closed','closed','','212-revision-v1','','','2019-09-13 18:05:59','2019-09-13 18:05:59','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(985,2,'2019-09-13 18:53:51','2019-09-13 18:53:51','','labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise','','inherit','open','closed','','labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise','','','2019-09-13 18:55:04','2019-09-13 18:55:04','',161,'http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise.jpg',0,'attachment','image/jpeg',0),(989,2,'2019-09-16 12:53:33','2019-09-16 12:53:33','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-16 12:53:33','2019-09-16 12:53:33','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(992,2,'2019-09-19 14:26:29','2019-09-19 14:26:29','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-19 14:26:29','2019-09-19 14:26:29','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(993,2,'2019-09-19 17:09:31','2019-09-19 17:09:31','<!-- wp:paragraph -->\n<p>Congratulations on booking your cruise! Before your first day of sailing, using our app will help not only simplify and expedite your arrival but also enhance your onboard experience. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>At home</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>How can I download the app? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Android users can find the Royal Caribbean, Celebrity and Azamara apps on Google Play while iOS users can find them on the App Store. Download before you arrive for your cruise. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How do I set up a Guest Account? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guest Accounts help organize your information and planning all in one convenient and easy location. <a href=\"http://royaldigital.labcp.co/faq/everything-you-need-to-know-about-your-guest-account/\">Click here</a> for more information. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What does linking my sailing mean? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Linking your sailing simply means your upcoming booked excursions will appear in your guest account. If your email is associated, linking should happen automatically. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are traveling with multiple parties, reservations should be linked with each other in order to most easily plan and coordinate activities. Make sure other party passengers 13 years or older create their own individual guest account so they can be linked to your sailing. Children under 13 do not need to worry since they are on the reservation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>When can I check in to my cruise?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in after booking begins up to 90 days in advance of your first sailing day and can happen up to 48 hours in advance. Checking in early allows all guests in your party to board more quickly on your day of sailing. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more general cruise questions you may have, take a look for the Hints and Tips link on your app. To get there, review your open sailings in the app. For any sailing that appears, go to Day 1 and look for the following screen. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":866,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Image-1.jpg\" alt=\"\" class=\"wp-image-866\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<h3>Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Connect to ship WiFi once onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connecting to your ship\'s WiFi at no cost. <a href=\"http://royaldigital.labcp.co/faq/how-do-i-start-using-the-royal-caribbean-app/\">It\'s easy</a>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Start booking shore excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://royaldigital.labcp.co/faq/can-i-make-reservations-with-the-app/\">Use your app to book</a> shore excursions, dining and a number of other different activities!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing any difficulties using the app, simply look for our app help desk onboard and they\'ll be happy to give you a hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','What you need to know before you go','','inherit','closed','closed','','804-revision-v1','','','2019-09-19 17:09:31','2019-09-19 17:09:31','',804,'http://royaldigital.labcp.co/804-revision-v1/',0,'revision','',0),(994,2,'2019-09-19 19:23:47','2019-09-19 19:23:47','','Edge arrival','','inherit','open','closed','','1542647075_edge-2','','','2019-10-14 17:41:10','2019-10-14 17:41:10','',1056,'http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2.jpg',0,'attachment','image/jpeg',0),(995,1,'2019-09-19 19:26:38','2019-09-19 19:26:38','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:8:\"taxonomy\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:19:\"create_taxonomy_faq\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Add link app in category faq','add-link-app-in-category-faq','publish','closed','closed','','group_5d83d627d076b','','','2019-09-19 19:27:43','2019-09-19 19:27:43','',0,'http://royaldigital.labcp.co/?post_type=acf-field-group&#038;p=995',0,'acf-field-group','',0),(996,1,'2019-09-19 19:26:38','2019-09-19 19:26:38','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link IOS','link_ios_app_faq','publish','closed','closed','','field_5d83d63bc335f','','','2019-09-19 19:26:38','2019-09-19 19:26:38','',995,'http://royaldigital.labcp.co/?post_type=acf-field&p=996',0,'acf-field','',0),(997,1,'2019-09-19 19:26:38','2019-09-19 19:26:38','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link Android','link_android_app_faq','publish','closed','closed','','field_5d83d650c3360','','','2019-09-19 19:26:38','2019-09-19 19:26:38','',995,'http://royaldigital.labcp.co/?post_type=acf-field&p=997',1,'acf-field','',0),(998,2,'2019-09-19 20:34:59','2019-09-19 20:34:59','','Ovation of the Seas','','publish','closed','closed','','ovation-of-the-seas','','','2019-09-19 20:38:27','2019-09-19 20:38:27','',0,'http://royaldigital.labcp.co/?post_type=ships&#038;p=998',0,'ships','',0),(999,2,'2019-09-19 20:17:24','2019-09-19 20:17:24','','Ovation_Daytime_Delivery-v04_747x2048','','inherit','open','closed','','ovation_daytime_delivery-v04_747x2048','','','2019-09-19 20:17:24','2019-09-19 20:17:24','',998,'http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048.png',0,'attachment','image/png',0),(1000,2,'2019-09-19 20:34:44','2019-09-19 20:34:44','','RCI_AUNZ_OV_JAN9_6','OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017','inherit','open','closed','','rci_aunz_ov_jan9_6','','','2019-09-19 20:34:44','2019-09-19 20:34:44','',998,'http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6.jpg',0,'attachment','image/jpeg',0),(1001,2,'2019-09-20 13:29:30','2019-09-20 13:29:30','','Royalscreen','','inherit','open','closed','','royalscreen','','','2019-09-20 14:36:22','2019-09-20 14:36:22','',952,'http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen.png',0,'attachment','image/png',0),(1002,2,'2019-09-20 14:39:46','2019-09-20 14:39:46','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Our app is free to download and free to use','','inherit','closed','closed','','212-revision-v1','','','2019-09-20 14:39:46','2019-09-20 14:39:46','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(1003,2,'2019-09-20 14:43:32','2019-09-20 14:43:32','','Screen Shot 2019-09-20 at 10.42.06 AM','','inherit','open','closed','','screen-shot-2019-09-20-at-10-42-06-am','','','2019-09-20 14:43:32','2019-09-20 14:43:32','',212,'http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM.png',0,'attachment','image/png',0),(1004,2,'2019-09-20 15:15:19','2019-09-20 15:15:19','','azamara','','inherit','open','closed','','azamara-3','','','2019-09-20 15:16:40','2019-09-20 15:16:40','',952,'http://royaldigital.labcp.co/app/uploads/2019/09/azamara.png',0,'attachment','image/png',0),(1005,2,'2019-09-20 15:15:31','2019-09-20 15:15:31','','celebrity','','inherit','open','closed','','celebrity-3','','','2019-09-20 15:16:40','2019-09-20 15:16:40','',952,'http://royaldigital.labcp.co/app/uploads/2019/09/celebrity.png',0,'attachment','image/png',0),(1006,2,'2019-09-20 19:34:45','2019-09-20 19:34:45','','Screen Shot 2019-08-09 at 2.23.20 PM','','inherit','open','closed','','screen-shot-2019-08-09-at-2-23-20-pm','','','2019-10-14 17:06:59','2019-10-14 17:06:59','',1056,'http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM.png',0,'attachment','image/png',0),(1007,2,'2019-09-20 19:36:13','2019-09-20 19:36:13','','Screen Shot 2019-09-20 at 3.33.58 PM','','inherit','open','closed','','screen-shot-2019-09-20-at-3-33-58-pm','','','2019-09-20 19:36:13','2019-09-20 19:36:13','',0,'http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM.png',0,'attachment','image/png',0),(1008,2,'2019-09-23 21:01:30','2019-09-23 21:01:30','','appusage','','inherit','open','closed','','appusage','','','2019-10-14 17:06:39','2019-10-14 17:06:39','',1056,'http://royaldigital.labcp.co/app/uploads/2019/09/appusage.jpg',0,'attachment','image/jpeg',0),(1009,2,'2019-09-23 21:02:56','2019-09-23 21:02:56','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email RCLDigitalFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Download and use our app at no cost','','inherit','closed','closed','','212-revision-v1','','','2019-09-23 21:02:56','2019-09-23 21:02:56','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(1011,2,'2019-09-23 21:04:32','2019-09-23 21:04:32','<!-- wp:paragraph -->\n<p><strong>Seamless adventures are now just a tap away for guests sailing with our brands onboard our ships. The digital app is available for select Royal Caribbean International, Celebrity Cruises and Azamara ships - we continue to add more ships. The app packs a list of features that make it easier for guests to plan and manage their vacation. </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The app is available on both the Apple Store and Google Play and can be used on shore with your mobile device. Onboard, our guests can use our app at no charge. No internet package is required --  just connect to the ship\'s Wi-Fi. Here is a list of features, which vary from ship to ship, as we move toward coverage across the fleet.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":45} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ships-1024x795.jpg\" alt=\"\" class=\"wp-image-45\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Before your cruise you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Sign into your account to view your booked cruises (must be at least 13 years old to have a guest account)</li><li>Check into your cruise</li><li>Link reservations with other guests so you can plan and make reservations together once onboard</li><li>Learn about our activity, entertainment, and dining venues including menus</li><li>Access your loyalty information</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Once onboard, connect to the ship Wi-Fi in order to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Make specialty and My Time dining reservations</li><li>Reserve shore excursions and shows</li><li>Browse real-time daily activities and save them to your calendar</li><li>Explore complete deck plans</li><li>Access your onboard expense account&nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Be sure to refer to your specific brand and ship for available features and functions as they vary by ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to develop and enhance the app and are looking for your ideas and feedback. Email AppFeedback@rccl.com and tell us what you’d like to see in the future.</p>\n<!-- /wp:paragraph -->','Download and use our app at no cost','','inherit','closed','closed','','212-revision-v1','','','2019-09-23 21:04:32','2019-09-23 21:04:32','',212,'http://royaldigital.labcp.co/212-revision-v1/',0,'revision','',0),(1013,2,'2019-09-27 16:08:16','2019-09-27 16:08:16','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-09-27 16:08:16','2019-09-27 16:08:16','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1014,2,'2019-09-27 16:08:30','2019-09-27 16:08:30','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a smile','','inherit','closed','closed','','312-revision-v1','','','2019-09-27 16:08:30','2019-09-27 16:08:30','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(1016,5,'2019-09-30 13:56:42','2019-09-30 13:56:42','','What do I need to know before my sailing?','','inherit','closed','closed','','889-autosave-v1','','','2019-09-30 13:56:42','2019-09-30 13:56:42','',889,'http://royaldigital.labcp.co/889-autosave-v1/',0,'revision','',0),(1017,4,'2019-11-06 23:07:52','2019-11-06 23:07:52','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.&nbsp;&nbsp;With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help?&nbsp;</strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->','Make every minute count with our apps','','publish','open','open','Roy@l','make-every-minute-count-with-our-apps','','','2019-11-06 23:09:20','2019-11-06 23:09:20','',0,'http://royaldigital.labcp.co/?p=1017',0,'post','',0),(1018,2,'2019-10-03 14:48:07','2019-10-03 14:48:07','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. <a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our app!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 14:48:07','2019-10-03 14:48:07','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1019,2,'2019-10-03 15:35:27','2019-10-03 15:35:27','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process).&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our app!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 15:35:27','2019-10-03 15:35:27','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1020,2,'2019-10-03 15:35:27','2019-10-03 15:35:27','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process).&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make the most of your vacation with our app!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 15:35:27','2019-10-03 15:35:27','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1021,2,'2019-10-03 19:13:16','2019-10-03 19:13:16','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process).&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 19:13:16','2019-10-03 19:13:16','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1022,2,'2019-10-03 19:13:16','2019-10-03 19:13:16','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process).&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 19:13:16','2019-10-03 19:13:16','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1023,2,'2019-10-03 19:13:18','2019-10-03 19:13:18','<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy it is to Make Every Minute Count!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The apps provide so many benefits that directly impact your time spent vacationing on your vacation. And they are available to you for free.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use image. Starting with your <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a>. Our apps provide you the ability to check in and onboard faster than ever before. (Describe the process).&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan your vacation (show deck maps, planner/calendar, restaurants/menus, hints, tips, need to know).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once onboard book dining reservations and book shore excursions right from your phone, wherever you are. Instructions about connecting onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Folio.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>App FAQs</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CTA</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-03 19:13:18','2019-10-03 19:13:18','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1024,2,'2019-10-04 18:21:18','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What can PMC do for me?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>When can I begin using PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','draft','open','open','','','','','2019-10-04 18:21:18','2019-10-04 18:21:18','',0,'http://royaldigital.labcp.co/?p=1024',0,'post','',0),(1025,2,'2019-10-04 18:13:50','2019-10-04 18:13:50','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What is PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:13:50','2019-10-04 18:13:50','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1026,2,'2019-10-04 18:13:50','2019-10-04 18:13:50','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What is PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:13:50','2019-10-04 18:13:50','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1027,2,'2019-10-04 18:13:55','2019-10-04 18:13:55','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What is PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:13:55','2019-10-04 18:13:55','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1028,2,'2019-10-04 18:14:50','2019-10-04 18:14:50','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:14:50','2019-10-04 18:14:50','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1029,2,'2019-10-04 18:14:50','2019-10-04 18:14:50','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:14:50','2019-10-04 18:14:50','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1030,2,'2019-10-04 18:14:51','2019-10-04 18:14:51','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">What can PMC do for me?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">When can I begin using PMC?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:14:51','2019-10-04 18:14:51','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1031,2,'2019-10-04 18:15:33','2019-10-04 18:15:33','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What can PMC do for me?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>When can I begin using PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:15:33','2019-10-04 18:15:33','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1032,2,'2019-10-04 18:15:33','2019-10-04 18:15:33','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What can PMC do for me?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>When can I begin using PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:15:33','2019-10-04 18:15:33','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1033,2,'2019-10-04 18:15:37','2019-10-04 18:15:37','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What can PMC do for me?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>When can I begin using PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:15:37','2019-10-04 18:15:37','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1034,2,'2019-10-04 18:17:00','2019-10-04 18:17:00','<!-- wp:paragraph -->\n<p>Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Guests who want to breeze through boarding can start the process before their vacation begins. The first step: download the app for the upcoming cruise. It’s an app guests will want once onboard for everything from booking dining, entertainment and shore excursion options, to finding their way around the ship, to ordering a beverage that will find its way to them wherever they are on board.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":793} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still001-1024x576.jpg\" alt=\"\" class=\"wp-image-793\"/><figcaption>Getting onboard faster means happier starts to your vacation.</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables guests to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment they arrive at the port.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off. Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology knows who is coming aboard, acknowledges them, and starts checking them in automatically in the background.</li><li>Be welcomed aboard. Check in complete, guests are now on their way effortlessly to their first vacation day. Any last minute paperwork to complete? A crew member will know, find the guest and take care of it all on the spot.</li></ul>\n<!-- /wp:list -->','Royal Caribbean expedites boarding','','inherit','closed','closed','','795-autosave-v1','','','2019-10-04 18:17:00','2019-10-04 18:17:00','',795,'http://royaldigital.labcp.co/795-autosave-v1/',0,'revision','',0),(1035,2,'2019-10-04 18:21:00','2019-10-04 18:21:00','<!-- wp:paragraph -->\n<p>We’re rewarding our Captain’s Club members’ loyalty with an exclusive sneak peek at our new, cruise planning website.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What is PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing on Royal Caribbean International, Celebrity Cruises or Azamara, PMC is a one-stop-shop for all your vacation planning needs. With new features to help sort through the myriad of activities available on each sailing, our new site will make sure you maximize the experience on your upcoming cruises.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>What can PMC do for me?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>You can get a glimpse of your entire vacation with the new Weekly Planner View, which helps to ensure each moment with us is well spent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Book before you sail with enhanced, easy to understand pricing and product availability for the best deals on everything your cruise has to offer.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>When can I begin using PMC?</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>For guests sailing in 2020, the new pre-cruise planner experience may start appearing as early as November 2019. Your dream cruise vacation is just a few clicks or taps away. Stay tuned for more updates on these exciting changes.&nbsp;</p>\n<!-- /wp:paragraph -->','PMC means planning your cruise just got far easier','','inherit','closed','closed','','1024-revision-v1','','','2019-10-04 18:21:00','2019-10-04 18:21:00','',1024,'http://royaldigital.labcp.co/1024-revision-v1/',0,'revision','',0),(1036,2,'2019-10-10 15:09:28','2019-10-10 15:09:28','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count. <a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Learn the ship layout before you go</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan Your Adventure in Advance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dining</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shore Excursions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Onboard Activities:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Save Time While Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Track Your *Onboard Expenses:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 15:09:28','2019-10-10 15:09:28','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1037,2,'2019-10-10 15:12:56','2019-10-10 15:12:56','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count. <a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&lt;h3>Learn the ship layout before you go&lt;/h3></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan Your Adventure in Advance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dining</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shore Excursions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Onboard Activities:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Save Time While Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Track Your *Onboard Expenses:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 15:12:56','2019-10-10 15:12:56','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1038,2,'2019-10-10 15:13:51','2019-10-10 15:13:51','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count. <a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plan Your Adventure in Advance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dining</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shore Excursions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Onboard Activities:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Save Time While Onboard</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Track Your *Onboard Expenses:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 15:13:51','2019-10-10 15:13:51','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1039,2,'2019-10-10 15:21:54','2019-10-10 15:21:54','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 15:21:54','2019-10-10 15:21:54','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1040,2,'2019-10-10 15:22:28','2019-10-10 15:22:28','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 15:22:28','2019-10-10 15:22:28','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1042,2,'2019-10-10 16:44:24','2019-10-10 16:44:24','','Screen Shot 2019-10-07 at 3.29.22 PM','','inherit','open','closed','','screen-shot-2019-10-07-at-3-29-22-pm','','','2019-10-10 16:44:24','2019-10-10 16:44:24','',0,'http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM.png',0,'attachment','image/png',0),(1043,2,'2019-10-10 16:45:03','2019-10-10 16:45:03','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1042,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\" alt=\"\" class=\"wp-image-1042\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 16:45:03','2019-10-10 16:45:03','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1044,2,'2019-10-10 16:46:12','2019-10-10 16:46:12','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":869,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/ZY-Video-2019-07-11-00000080.00_00_14_06.Still008-e1568145431332-860x1024.jpg\" alt=\"\" class=\"wp-image-869\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in early and get through the terminal and onboard faster on sail day. By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1042,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\" alt=\"\" class=\"wp-image-1042\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship. Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 16:46:12','2019-10-10 16:46:12','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1045,2,'2019-10-10 17:57:28','2019-10-10 17:57:28','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Check in early and get through the terminal and onboard faster on sail day</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p> By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1042,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\" alt=\"\" class=\"wp-image-1042\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship. Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 17:57:28','2019-10-10 17:57:28','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1046,2,'2019-10-10 17:57:59','2019-10-10 17:57:59','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Check in early</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p> By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1042,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\" alt=\"\" class=\"wp-image-1042\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship. Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 17:57:59','2019-10-10 17:57:59','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1047,2,'2019-10-10 18:10:46','2019-10-10 18:10:46','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in early</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p> By downloading the app and checking in prior to your sailing, you have the ability to qualify for expedited arrival at the terminal, have all of your documents in one place and can start your adventure quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Simply click the icon below, download the app, set up your guest account and follow the prompts. Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take a look for yourself how simple and easy the <a href=\"http://royaldigital.labcp.co/faq/speed-up-your-boarding-with-online-check-in/\">check-in process</a> is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Learn the ship layout before you go</h3>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1042,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/10/Screen-Shot-2019-10-07-at-3.29.22-PM-572x1024.png\" alt=\"\" class=\"wp-image-1042\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship. Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps!','','inherit','closed','closed','','1017-revision-v1','','','2019-10-10 18:10:46','2019-10-10 18:10:46','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1048,2,'2019-10-11 13:58:57','2019-10-11 13:58:57','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-11 13:58:57','2019-10-11 13:58:57','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1049,1,'2019-10-14 13:26:01','2019-10-14 13:26:01','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a smile','','inherit','closed','closed','','312-revision-v1','','','2019-10-14 13:26:01','2019-10-14 13:26:01','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(1050,1,'2019-10-14 13:26:18','2019-10-14 13:26:18','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a smile','','inherit','closed','closed','','312-revision-v1','','','2019-10-14 13:26:18','2019-10-14 13:26:18','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(1051,1,'2019-10-14 13:26:24','2019-10-14 13:26:24','<!-- wp:paragraph -->\n<p>Nobody wants to start their vacation waiting in line.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s why Royal Caribbean Cruises Ltd. is combining facial recognition technology, QR codes, digital beacons and an app guests can add to their smartphones to streamline and simplify boarding a ship.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Breeze through boarding and start the process before your vacation begins. The first step: download the app for the upcoming cruise. It’s a valuable tool onboard that will help with everything from booking dining, entertainment and shore excursion options. It\'ll also come in handy for finding your way around the ship and even ordering a beverage that will find its way to  you -- wherever you may be on board!&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":85} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/ai-1024x643.jpg\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Step two is to complete the quick and easy check-in on the app with built-in travel document scanning and verification, and image recognition technology for security photo validation. This enables you to enjoy a frictionless and expedited boarding experience through a dedicated lane the moment you arrive at the port. There are additional benefits to checking in early:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Worry-Free Curbside Luggage Drop-Off: Drop off your luggage when you arrive at the terminal with the peace of mind that your belongings will arrive at your stateroom through luggage tagging and tracking technology.</li><li>Expedited security check points. Using the pre-validated security photo uploaded earlier, facial recognition technology can recognize you in a snap and start checking you in automatically in the background.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>That wasn\'t too difficult, was it? Once your Check-in is complete, you are now on your way towards effortlessly enjoying your first vacation day. Any last minute paperwork to complete? Not to worry. A crew member will know and get in contact with you to take care of it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We continue to expand our offerings across our fleet. Be sure to keep an eye on which ships currently offer expedited arrival!</p>\n<!-- /wp:paragraph -->','Check-in starts with a smile','','inherit','closed','closed','','312-revision-v1','','','2019-10-14 13:26:24','2019-10-14 13:26:24','',312,'http://royaldigital.labcp.co/312-revision-v1/',0,'revision','',0),(1052,2,'2019-10-14 15:07:39','2019-10-14 15:07:39','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-14 15:07:39','2019-10-14 15:07:39','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1053,2,'2019-10-14 15:08:23','2019-10-14 15:08:23','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-14 15:08:23','2019-10-14 15:08:23','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1054,2,'2019-10-14 15:08:52','2019-10-14 15:08:52','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-14 15:08:52','2019-10-14 15:08:52','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1055,1,'2019-10-14 16:58:22','2019-10-14 16:58:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Content text','content_text','publish','closed','closed','','field_5da4a90b176f4','','','2019-10-14 16:58:22','2019-10-14 16:58:22','',278,'http://royaldigital.labcp.co/?post_type=acf-field&p=1055',0,'acf-field','',0),(1056,1,'2019-10-14 17:10:15','2019-10-14 17:10:15','','Test new post format','','private','closed','closed','','test-new-post-format','','','2019-10-22 16:33:07','2019-10-22 16:33:07','',0,'http://royaldigital.labcp.co/?post_type=faq&#038;p=1056',0,'faq','',0),(1057,2,'2019-10-14 20:29:10','2019-10-14 20:29:10','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-14 20:29:10','2019-10-14 20:29:10','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1059,2,'2019-10-22 17:12:41','2019-10-22 17:12:41','','Home','','inherit','closed','closed','','17-revision-v1','','','2019-10-22 17:12:41','2019-10-22 17:12:41','',17,'http://royaldigital.labcp.co/17-revision-v1/',0,'revision','',0),(1062,4,'2019-11-06 17:43:16','2019-11-06 17:43:16','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click here learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click <a href=\"#\">here</a> learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Plan Your Adventure in Advance</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 17:43:16','2019-11-06 17:43:16','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1063,4,'2019-11-06 17:46:37','2019-11-06 17:46:37','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click here learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click <a href=\"#\">here</a> learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 17:46:37','2019-11-06 17:46:37','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1064,4,'2019-11-06 17:48:25','2019-11-06 17:48:25','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click here learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click <a href=\"#\">here</a> learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 17:48:25','2019-11-06 17:48:25','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1065,4,'2019-11-06 17:50:27','2019-11-06 17:50:27','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click here learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click <a href=\"#\">here</a> learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img alt=\"\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\"><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 17:50:27','2019-11-06 17:50:27','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1066,4,'2019-11-06 17:51:06','2019-11-06 17:51:06','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click here learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click <a href=\"#\">here</a> learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img alt=\"\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 17:51:06','2019-11-06 17:51:06','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1067,4,'2019-11-06 18:14:39','2019-11-06 18:14:39','','FPO','','inherit','open','closed','','fpo','','','2019-11-06 18:14:39','2019-11-06 18:14:39','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/FPO.jpg',0,'attachment','image/jpeg',0),(1068,4,'2019-11-06 18:15:51','2019-11-06 18:15:51','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1067,\"align\":\"left\",\"width\":270,\"height\":270} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO.jpg\" alt=\"\" class=\"wp-image-1067\" width=\"270\" height=\"270\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:15:51','2019-11-06 18:15:51','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1069,4,'2019-11-06 18:16:53','2019-11-06 18:16:53','','FPO-1','','inherit','open','closed','','fpo-1','','','2019-11-06 18:16:53','2019-11-06 18:16:53','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg',0,'attachment','image/jpeg',0),(1070,4,'2019-11-06 18:16:55','2019-11-06 18:16:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1069} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:16:55','2019-11-06 18:16:55','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1071,4,'2019-11-06 18:17:05','2019-11-06 18:17:05','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1069,\"align\":\"left\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:17:05','2019-11-06 18:17:05','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1072,4,'2019-11-06 18:17:16','2019-11-06 18:17:16','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1069,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:17:16','2019-11-06 18:17:16','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1073,4,'2019-11-06 18:18:46','2019-11-06 18:18:46','','FPO Copy','','inherit','open','closed','','fpo-copy','','','2019-11-06 18:18:46','2019-11-06 18:18:46','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg',0,'attachment','image/jpeg',0),(1074,4,'2019-11-06 18:18:51','2019-11-06 18:18:51','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:18:51','2019-11-06 18:18:51','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1075,4,'2019-11-06 18:19:28','2019-11-06 18:19:28','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:19:28','2019-11-06 18:19:28','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1076,4,'2019-11-06 18:19:39','2019-11-06 18:19:39','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:19:39','2019-11-06 18:19:39','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1077,4,'2019-11-06 18:20:24','2019-11-06 18:20:24','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/><figcaption><strong>Shore Excursions</strong><br>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</figcaption></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:20:24','2019-11-06 18:20:24','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1078,4,'2019-11-06 18:22:02','2019-11-06 18:22:02','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":1069,\"mediaType\":\"image\",\"mediaWidth\":31} -->\n<div class=\"wp-block-media-text alignwide\" style=\"grid-template-columns:31% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:22:02','2019-11-06 18:22:02','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1079,4,'2019-11-06 18:22:18','2019-11-06 18:22:18','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":1069,\"mediaType\":\"image\",\"mediaWidth\":21} -->\n<div class=\"wp-block-media-text alignwide\" style=\"grid-template-columns:21% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:22:18','2019-11-06 18:22:18','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1080,4,'2019-11-06 18:22:51','2019-11-06 18:22:51','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1069,\"align\":\"left\",\"width\":191,\"height\":191} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\" width=\"191\" height=\"191\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:22:51','2019-11-06 18:22:51','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1081,4,'2019-11-06 18:23:09','2019-11-06 18:23:09','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1069,\"align\":\"left\",\"width\":328,\"height\":328} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\" width=\"328\" height=\"328\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:23:09','2019-11-06 18:23:09','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1082,4,'2019-11-06 18:24:11','2019-11-06 18:24:11','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":1069,\"mediaType\":\"image\",\"mediaWidth\":10} -->\n<div class=\"wp-block-media-text alignwide\" style=\"grid-template-columns:10% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:24:11','2019-11-06 18:24:11','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1083,4,'2019-11-06 18:24:29','2019-11-06 18:24:29','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":1069,\"mediaType\":\"image\",\"mediaWidth\":28} -->\n<div class=\"wp-block-media-text alignwide\" style=\"grid-template-columns:28% auto\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:24:29','2019-11-06 18:24:29','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1084,4,'2019-11-06 18:24:42','2019-11-06 18:24:42','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":1069,\"mediaType\":\"image\",\"mediaWidth\":28} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\" style=\"grid-template-columns:auto 28%\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-1.jpg\" alt=\"\" class=\"wp-image-1069\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:24:42','2019-11-06 18:24:42','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1085,4,'2019-11-06 18:26:17','2019-11-06 18:26:17','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:26:17','2019-11-06 18:26:17','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1086,4,'2019-11-06 18:27:38','2019-11-06 18:27:38','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:27:38','2019-11-06 18:27:38','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1087,4,'2019-11-06 18:27:54','2019-11-06 18:27:54','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:27:54','2019-11-06 18:27:54','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1088,4,'2019-11-06 18:28:15','2019-11-06 18:28:15','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:28:15','2019-11-06 18:28:15','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1089,4,'2019-11-06 18:28:37','2019-11-06 18:28:37','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:28:37','2019-11-06 18:28:37','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1090,4,'2019-11-06 18:28:58','2019-11-06 18:28:58','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Learn the ship layout before you go</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:28:58','2019-11-06 18:28:58','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1091,4,'2019-11-06 18:29:11','2019-11-06 18:29:11','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:heading -->\n<h2><strong>Learn the ship layout before you go</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:29:11','2019-11-06 18:29:11','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1092,4,'2019-11-06 18:29:27','2019-11-06 18:29:27','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:29:27','2019-11-06 18:29:27','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1093,4,'2019-11-06 18:29:44','2019-11-06 18:29:44','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations. &lt;br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:29:44','2019-11-06 18:29:44','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1094,4,'2019-11-06 18:30:34','2019-11-06 18:30:34','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Dining</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:30:34','2019-11-06 18:30:34','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1095,4,'2019-11-06 18:34:03','2019-11-06 18:34:03','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re sailing with Royal Caribbean International, Celebrity Cruises or Azamara, we have created a tool that allows you to plan as much of your vacation in advance while allowing you freedom to leave your options open and still enjoy tremendous convenience. At RCI we know that your vacation time is precious and we want to help you make every minute count.&nbsp;<a href=\"http://royaldigital.labcp.co/post-test-title/\">Click here</a> to find out how easy that is!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That\'s why we recommend downloading the app as soon as possible before you sail so you can:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:34:03','2019-11-06 18:34:03','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1096,4,'2019-11-06 18:35:07','2019-11-06 18:35:07','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Check in Early to Onboard Faster on Sail Day</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:35:07','2019-11-06 18:35:07','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1097,4,'2019-11-06 18:35:56','2019-11-06 18:35:56','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:35:56','2019-11-06 18:35:56','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1098,4,'2019-11-06 18:36:03','2019-11-06 18:36:03','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Check in Early to Onboard Faster on Sail Day</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:36:03','2019-11-06 18:36:03','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1099,4,'2019-11-06 18:36:13','2019-11-06 18:36:13','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Check in Early to Onboard Faster on Sail Day</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:36:13','2019-11-06 18:36:13','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1100,4,'2019-11-06 18:36:23','2019-11-06 18:36:23','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3><b>Plan Your Adventure in Advance</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:36:23','2019-11-06 18:36:23','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1101,4,'2019-11-06 18:36:55','2019-11-06 18:36:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:36:55','2019-11-06 18:36:55','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1102,4,'2019-11-06 18:37:22','2019-11-06 18:37:22','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:html -->\n<h3><b>Save Time While Onboard</b></h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:37:22','2019-11-06 18:37:22','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1103,4,'2019-11-06 18:37:57','2019-11-06 18:37:57','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:37:57','2019-11-06 18:37:57','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1104,4,'2019-11-06 18:38:23','2019-11-06 18:38:23','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:38:23','2019-11-06 18:38:23','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1105,4,'2019-11-06 18:39:57','2019-11-06 18:39:57','','FPO Copy 2','','inherit','open','closed','','fpo-copy-2','','','2019-11-06 18:39:57','2019-11-06 18:39:57','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2.jpg',0,'attachment','image/jpeg',0),(1106,4,'2019-11-06 18:40:03','2019-11-06 18:40:03','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shore Excursions</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Onboard Activities</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, close to the sailing, you will be able to see activities and offerings available on the ship and can put them in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<h3>Save Time While Onboard</h3>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect your phone to theship\'s Wi-Fi in your settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Track Your *Onboard Expenses</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report. With the app you now have the ability to track your expenses right from your phone, in real time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn Helpful Information While Onboard</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ship time is the right time. On the app, you are always on ship time and won\'t miss a beat!</li><li>Learn about the weather, port information, and helpful hints for the day.</li><li>Medical information and other Need to Know information at your fingertips. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, by having the app downloaded before you sail, you still can enjoy the convenience of these options once you\'re onboard.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading the app allows you to gain as much knowledge and plan your cruise in advance as you\'d like, or you can leave your options open. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Either way, you hold the power to maximize your time right in the palm of your hand!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click here to learn more about the app and view FAQs</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:40:03','2019-11-06 18:40:03','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1108,4,'2019-11-06 18:55:33','2019-11-06 18:55:33','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 18:55:33','2019-11-06 18:55:33','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1110,4,'2019-11-06 19:12:28','2019-11-06 19:12:28','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.&nbsp;&nbsp;With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<sub>*Where available</sub>\n<!-- /wp:html -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:12:28','2019-11-06 19:12:28','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1111,4,'2019-11-06 19:12:55','2019-11-06 19:12:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.&nbsp;&nbsp;With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<sup>*Where available</sup>\n<!-- /wp:html -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:12:55','2019-11-06 19:12:55','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1112,4,'2019-11-06 19:14:09','2019-11-06 19:14:09','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:14:09','2019-11-06 19:14:09','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1113,4,'2019-11-06 19:14:48','2019-11-06 19:14:48','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:14:48','2019-11-06 19:14:48','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1114,4,'2019-11-06 19:15:29','2019-11-06 19:15:29','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:15:29','2019-11-06 19:15:29','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1115,4,'2019-11-06 19:16:26','2019-11-06 19:16:26','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:16:26','2019-11-06 19:16:26','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1116,4,'2019-11-06 19:17:50','2019-11-06 19:17:50','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:17:50','2019-11-06 19:17:50','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1117,4,'2019-11-06 19:25:55','2019-11-06 19:25:55','','Screen-Shot-2019-11-06-at-2.23.24-PM','','inherit','open','closed','','screen-shot-2019-11-06-at-2-23-24-pm','','','2019-11-06 19:25:55','2019-11-06 19:25:55','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM.png',0,'attachment','image/png',0),(1119,4,'2019-11-06 19:27:55','2019-11-06 19:27:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1117} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM-1024x679.png\" alt=\"\" class=\"wp-image-1117\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:27:55','2019-11-06 19:27:55','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1120,4,'2019-11-06 19:29:55','2019-11-06 19:29:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1117} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM-1024x679.png\" alt=\"\" class=\"wp-image-1117\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:29:55','2019-11-06 19:29:55','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1121,4,'2019-11-06 19:31:38','2019-11-06 19:31:38','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1117} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM-1024x679.png\" alt=\"\" class=\"wp-image-1117\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Download the app now for free</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:31:38','2019-11-06 19:31:38','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1122,4,'2019-11-06 19:33:01','2019-11-06 19:33:01','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1117} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM-1024x679.png\" alt=\"\" class=\"wp-image-1117\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Download the app now for free</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:33:01','2019-11-06 19:33:01','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1123,4,'2019-11-06 19:37:09','2019-11-06 19:37:09','','RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK','','inherit','open','closed','','rci_nv_cc_jsfamily_032019_pooldeck_283_ret_cmyk','','','2019-11-06 19:37:09','2019-11-06 19:37:09','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png',0,'attachment','image/png',0),(1124,4,'2019-11-06 19:37:35','2019-11-06 19:37:35','','RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK','','inherit','open','closed','','rci_nv_cc_ahendel_032019_limeandcoconut_49a3984_ret_cmyk','','','2019-11-06 19:37:35','2019-11-06 19:37:35','',1017,'http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png',0,'attachment','image/png',0),(1125,4,'2019-11-06 19:37:43','2019-11-06 19:37:43','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Download the app now for free</p>\n<!-- /wp:paragraph -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:37:43','2019-11-06 19:37:43','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1126,4,'2019-11-06 19:38:18','2019-11-06 19:38:18','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:38:18','2019-11-06 19:38:18','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1127,4,'2019-11-06 19:40:25','2019-11-06 19:40:25','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 19:40:25','2019-11-06 19:40:25','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1128,4,'2019-11-06 23:07:54','2019-11-06 23:07:54','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.  With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help? </strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 23:07:54','2019-11-06 23:07:54','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1129,4,'2019-11-06 23:08:13','2019-11-06 23:08:13','<!-- wp:paragraph -->\n<p>We want to help you make the most of your vacation. That is why we recommend downloading the app before you sail so you can:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Check in Early to Onboard Faster on Sail Day</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By downloading the app and using it to check in prior to your sailing, you have the ability to qualify for expedited arrival and can start your adventure quickly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you arrive at the terminal, you\'ll be able to board while bypassing the general boarding lines.Click&nbsp;here&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Click&nbsp;<a href=\"#\">here</a>&nbsp;learn more details on checking in via the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Plan Your Adventure in Advance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Learn the ship layout before you go</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you download the app you will have access to deck maps so you can see where your stateroom is located, find restaurants and venues and learn the layout of the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then, when you board the ship on sail day, you can save time knowing your way around and getting to the fun right away!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Dining</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Look up onboard restaurants and view their menus and locations, so when you board, you\'re ready to book your reservations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Shore Excursions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You can also view shore excursions, learn the helpful details and be ready to book once you board the ship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1073,\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy.jpg\" alt=\"\" class=\"wp-image-1073\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Onboard Activities</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally, view and save activities and events in your own personal calendar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Save Time While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As soon as you board the ship, connect to the ship\'s Wi-Fi in your phone settings, so that you can access the app for free. (No internet package purchase is required.)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then book your reservations, shore excursions, and activities and spend the rest of your vacation vacationing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:image {\"id\":1105} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2-1024x356.jpg\" alt=\"\" class=\"wp-image-1105\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>*Track Your Onboard Expenses</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No more waiting in line to get your latest expense report.&nbsp;&nbsp;With the app you now have the ability to track your expenses right from your phone, in real-time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*Where available</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:html -->\n<br>\n<!-- /wp:html -->\n\n<!-- wp:separator {\"className\":\"is-style-dots\"} -->\n<hr class=\"wp-block-separator is-style-dots\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Learn Helpful Information While Onboard</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Ship time is the right time</strong><br>On the app, you are always on ship time and won\'t miss a beat!</li><li><strong>Stay informed</strong><br>Learn about the local weather, port information, and helpful hints for the day.</li><li><strong>Need Help?&nbsp;</strong><br>Medical and other Need to Know information is also available at your fingertips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>And if you want to leave your options open, you still can enjoy the convenience and flexibility of these options once you\'re onboard.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No need to physically go in person to book reservations, activities, or shore excursions--you\'re all set, from wherever you are on the ship, with just a few taps on the app.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As you can see, downloading and using the app allows you to learn and plan your cruise in advance as much as you\'d like, or you can leave your options open and still take advantage of it’s many benefits on the fly.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Either way, you hold the power to maximize your time&nbsp;</strong><strong>right in the palm of your hand!</strong></h3>\n<!-- /wp:heading -->','Make every minute count with our apps','','inherit','closed','closed','','1017-revision-v1','','','2019-11-06 23:08:13','2019-11-06 23:08:13','',1017,'http://royaldigital.labcp.co/1017-revision-v1/',0,'revision','',0),(1130,2,'2019-11-12 19:49:29','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><strong>How RaaS is personalizing the digital cruise experience</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In a digital world where artificial intelligence (AI) and algorithmic machine learning are quickly becoming fair game, the keys to success are simultaneously evolving. Claiming the title of ‘cutting-edge’ is no longer about locking down the latest technology—the gates are wide open. The determining factor for getting ahead isn’t about access anymore. It’s about being smart with the tools you have.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“We’re marking smart recommendations - suggestions that are relevant and make sense to guests,” says Emma Prevolis, from Royal Caribbean’s Recommendations as a Service (RaaS) development team.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Presenting customers with data-driven recommendations isn’t breaking news. A quick visit online to common purchasing flows will lead to jarring pop-ups of “You May Also Like” suggestions, or “Frequently Bought Together” products sectioned off to a corner. In both scenarios, unsynthesized data is the cause, and low engagement is the result. Through the synthesis, analysis, and refinement of data, RaaS is able to craft recommendations that are actually meaningful to guests.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s the best way to give thoughtful advice to someone? Get to know them. RaaS utilizes a variety of computations to understand the guest, including the current passenger schedule. Which activities has the guest already scheduled or booked in her calendar? Which activities has the guest removed from her calendar or cancelled? Which time blocks are open? Which time blocks are reserved? The algorithm considers all of these questions and develops sensible recommendations, while excluding inappropriate activities that present a schedule conflict or are similar to ones that were removed by the guest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The calculations don’t end here. RaaS continues to refine its recommendations by analyzing the guest’s traveling party (a traveling family leads to more family-friendly suggestions while a traveling group of friends leads to more adult-friendly suggestions), the age of the guest (RaaS excludes age-restricted activities), and even previous cruise activity for seasoned voyagers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“The final step is a quality check performed by the (human) team. This is very important because we want to offer a meaningful diversity of recommendations,” says Emma.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When human judgment is removed from the equation, it’s likely that the algorithm—no matter how sophisticated--will yield irrelevant or bewildering results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Right now, we’re only on Allure. We have a deployment schedule because each ship is different, and we have to fine-tune RaaS to fit each individual ship.”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beyond its understanding of guest preferences, the success of RaaS hinges on accounting for ship identities. For example, each ship has a unique set of passengers, ports of call, and activity offerings.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“We’re also using onboard feedback from guests and crew to refine the process before we deploy on future ships,” says Emma.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>RaaS emphasizes the service part of its title. It helps guests maximize their vacations with meaningful recommendations. But most importantly, it ensures that guests never have to worry about missing out on any of the fun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','RaaS makes digital more personal','','draft','open','open','','','','','2019-11-12 19:49:29','2019-11-12 19:49:29','',0,'http://royaldigital.labcp.co/?p=1130',0,'post','',0),(1131,2,'2019-11-12 19:49:27','2019-11-12 19:49:27','<!-- wp:paragraph -->\n<p><strong>How RaaS is personalizing the digital cruise experience</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In a digital world where artificial intelligence (AI) and algorithmic machine learning are quickly becoming fair game, the keys to success are simultaneously evolving. Claiming the title of ‘cutting-edge’ is no longer about locking down the latest technology—the gates are wide open. The determining factor for getting ahead isn’t about access anymore. It’s about being smart with the tools you have.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“We’re marking smart recommendations - suggestions that are relevant and make sense to guests,” says Emma Prevolis, from Royal Caribbean’s Recommendations as a Service (RaaS) development team.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Presenting customers with data-driven recommendations isn’t breaking news. A quick visit online to common purchasing flows will lead to jarring pop-ups of “You May Also Like” suggestions, or “Frequently Bought Together” products sectioned off to a corner. In both scenarios, unsynthesized data is the cause, and low engagement is the result. Through the synthesis, analysis, and refinement of data, RaaS is able to craft recommendations that are actually meaningful to guests.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s the best way to give thoughtful advice to someone? Get to know them. RaaS utilizes a variety of computations to understand the guest, including the current passenger schedule. Which activities has the guest already scheduled or booked in her calendar? Which activities has the guest removed from her calendar or cancelled? Which time blocks are open? Which time blocks are reserved? The algorithm considers all of these questions and develops sensible recommendations, while excluding inappropriate activities that present a schedule conflict or are similar to ones that were removed by the guest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The calculations don’t end here. RaaS continues to refine its recommendations by analyzing the guest’s traveling party (a traveling family leads to more family-friendly suggestions while a traveling group of friends leads to more adult-friendly suggestions), the age of the guest (RaaS excludes age-restricted activities), and even previous cruise activity for seasoned voyagers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“The final step is a quality check performed by the (human) team. This is very important because we want to offer a meaningful diversity of recommendations,” says Emma.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When human judgment is removed from the equation, it’s likely that the algorithm—no matter how sophisticated--will yield irrelevant or bewildering results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“Right now, we’re only on Allure. We have a deployment schedule because each ship is different, and we have to fine-tune RaaS to fit each individual ship.”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beyond its understanding of guest preferences, the success of RaaS hinges on accounting for ship identities. For example, each ship has a unique set of passengers, ports of call, and activity offerings.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>“We’re also using onboard feedback from guests and crew to refine the process before we deploy on future ships,” says Emma.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>RaaS emphasizes the service part of its title. It helps guests maximize their vacations with meaningful recommendations. But most importantly, it ensures that guests never have to worry about missing out on any of the fun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','RaaS makes digital more personal','','inherit','closed','closed','','1130-revision-v1','','','2019-11-12 19:49:27','2019-11-12 19:49:27','',1130,'http://royaldigital.labcp.co/1130-revision-v1/',0,'revision','',0),(1136,9,'2020-06-08 19:24:10','2020-06-08 19:24:10','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\" /></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n\n\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','publish','closed','closed','','test-page-all-available-blocks','','','2020-06-24 01:12:25','2020-06-24 01:12:25','',0,'http://royaldigital.labcp.co/?page_id=1136',0,'page','',0),(1137,9,'2020-06-08 18:18:03','2020-06-08 18:18:03','','mobile-1','','inherit','open','closed','','mobile-1','','','2020-06-08 18:18:03','2020-06-08 18:18:03','',1136,'http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png',0,'attachment','image/png',0),(1138,9,'2020-06-08 18:22:42','2020-06-08 18:22:42','<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 18:22:42','2020-06-08 18:22:42','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1139,9,'2020-06-08 18:30:20','2020-06-08 18:30:20','<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 18:30:20','2020-06-08 18:30:20','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1141,9,'2020-06-08 19:22:16','2020-06-08 19:22:16','<!-- wp:file {\"id\":794,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg\">CEL_EXCALIBUR EDGE APRIL2019_MC_C0014.MP4.00_00_01_03.Still004</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/08/CEL_EXCALIBUR-EDGE-APRIL2019_MC_C0014.MP4.00_00_01_03.Still004.jpg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 19:22:16','2020-06-08 19:22:16','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1142,9,'2020-06-08 19:22:50','2020-06-08 19:22:50','','Homeport _ RCL Employee Intranet - Google Chrome 2019-11-25 17-27-50','','inherit','open','closed','','homeport-_-rcl-employee-intranet-google-chrome-2019-11-25-17-27-50','','','2020-06-08 19:22:50','2020-06-08 19:22:50','',0,'http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4',0,'attachment','video/mp4',0),(1143,9,'2020-06-08 19:23:44','2020-06-08 19:23:44','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 19:23:44','2020-06-08 19:23:44','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (1144,9,'2020-06-08 21:20:55','2020-06-08 21:20:55','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":929,\"align\":\"left\",\"width\":387,\"height\":278} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\" width=\"387\" height=\"278\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td></td><td>C1</td><td>C2</td><td>C3</td><td>C4</td><td>C5</td></tr><tr><td>R1</td><td>c1:r1</td><td>c2:r1</td><td>c3:r1</td><td>c4:r1</td><td>c5:r1</td></tr><tr><td>R2</td><td>c1:r2</td><td>c2:r2</td><td>c3:r2</td><td>c4:r2</td><td>c5:r2</td></tr><tr><td>R3</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R4</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R5</td><td>c1:r5</td><td>c2:r5</td><td>c3:r5</td><td>c4:r5</td><td>c5:r5</td></tr><tr><td>R6</td><td>c1:r6</td><td>c2:r6</td><td>c3:r6</td><td>c4:r6</td><td>c5:r6</td></tr><tr><td>R7</td><td>c1:r7</td><td>c2:r7</td><td>c3:r7</td><td>c4:r7</td><td>c5:r7</td></tr><tr><td>R8</td><td>c1:r8</td><td>c2:r8</td><td>c3:r8</td><td>c4:r8</td><td>c5:r8</td></tr><tr><td>R9</td><td>c1:r9</td><td>c2:r9</td><td>c3:r9</td><td>c4:r9</td><td>c5:r9</td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png\",\"id\":1123} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">Krishna is a God at Development</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','publish','open','open','','test-post-all-block-elements','','','2020-07-02 17:48:33','2020-07-02 17:48:33','',0,'http://royaldigital.labcp.co/?p=1144',0,'post','',0),(1145,9,'2020-06-08 19:29:57','2020-06-08 19:29:57','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 19:29:57','2020-06-08 19:29:57','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1146,9,'2020-06-08 19:32:37','2020-06-08 19:32:37','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 19:32:37','2020-06-08 19:32:37','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1147,9,'2020-06-08 19:35:29','2020-06-08 19:35:29','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 19:35:29','2020-06-08 19:35:29','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1148,9,'2020-06-08 19:38:31','2020-06-08 19:38:31','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,1003,1001,1000,999,994,985]} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/><figcaption>here\'s an image caption in a gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/07/Screen-Shot-2019-09-20-at-10.42.06-AM-1024x577.png\" alt=\"\" data-id=\"1003\" data-link=\"http://royaldigital.labcp.co/post-test-title/screen-shot-2019-09-20-at-10-42-06-am/\" class=\"wp-image-1003\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Royalscreen-473x1024.png\" alt=\"\" data-id=\"1001\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/royalscreen/\" class=\"wp-image-1001\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/RCI_AUNZ_OV_JAN9_6-1024x575.jpg\" alt=\"\" data-id=\"1000\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/rci_aunz_ov_jan9_6/\" class=\"wp-image-1000\"/><figcaption>OV, Ovation of the Seas, Sydney, Australia, sunrise, arrival, aerial, drone, Sydney Harbour Bridge, city landscape, 9 January 2017</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Ovation_Daytime_Delivery-v04_747x2048-374x1024.png\" alt=\"\" data-id=\"999\" data-link=\"http://royaldigital.labcp.co/ships/ovation-of-the-seas/ovation_daytime_delivery-v04_747x2048/\" class=\"wp-image-999\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1542647075_EDGE-2-1024x683.jpg\" alt=\"\" data-id=\"994\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/1542647075_edge-2/\" class=\"wp-image-994\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 19:38:31','2020-06-08 19:38:31','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1150,9,'2020-06-08 19:47:09','2020-06-08 19:47:09','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-08 19:47:09','2020-06-08 19:47:09','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1151,9,'2020-06-08 19:47:43','2020-06-08 19:47:43','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 19:47:43','2020-06-08 19:47:43','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1152,9,'2020-06-08 20:46:31','2020-06-08 20:46:31','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 20:46:31','2020-06-08 20:46:31','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1153,9,'2020-06-08 20:48:45','2020-06-08 20:48:45','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 20:48:45','2020-06-08 20:48:45','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1154,9,'2020-06-08 21:12:36','2020-06-08 21:12:36','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 21:12:36','2020-06-08 21:12:36','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1155,9,'2020-06-08 21:13:58','2020-06-08 21:13:58','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Test Post Page with all Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-08 21:13:58','2020-06-08 21:13:58','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1157,9,'2020-06-15 21:33:38','2020-06-15 21:33:38','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 21:33:38','2020-06-15 21:33:38','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1159,9,'2020-06-15 22:34:36','2020-06-15 22:34:36','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:34:36','2020-06-15 22:34:36','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1160,9,'2020-06-15 22:35:04','2020-06-15 22:35:04','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:35:04','2020-06-15 22:35:04','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1161,9,'2020-06-15 22:36:10','2020-06-15 22:36:10','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"right\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube alignright wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:36:10','2020-06-15 22:36:10','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1162,9,'2020-06-15 22:36:32','2020-06-15 22:36:32','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:36:32','2020-06-15 22:36:32','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1163,9,'2020-06-15 22:59:45','2020-06-15 22:59:45','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:59:45','2020-06-15 22:59:45','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1164,9,'2020-06-15 22:59:45','2020-06-15 22:59:45','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 22:59:45','2020-06-15 22:59:45','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1165,9,'2020-06-15 23:10:22','2020-06-15 23:10:22','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 23:10:22','2020-06-15 23:10:22','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1166,9,'2020-06-15 23:19:47','2020-06-15 23:19:47','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td></td><td>C1</td><td>C2</td><td>C3</td><td>C4</td><td>C5</td></tr><tr><td>R1</td><td>c1:r1</td><td>c2:r1</td><td>c3:r1</td><td>c4:r1</td><td>c5:r1</td></tr><tr><td>R2</td><td>c1:r2</td><td>c2:r2</td><td>c3:r2</td><td>c4:r2</td><td>c5:r2</td></tr><tr><td>R3</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R4</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R5</td><td>c1:r5</td><td>c2:r5</td><td>c3:r5</td><td>c4:r5</td><td>c5:r5</td></tr><tr><td>R6</td><td>c1:r6</td><td>c2:r6</td><td>c3:r6</td><td>c4:r6</td><td>c5:r6</td></tr><tr><td>R7</td><td>c1:r7</td><td>c2:r7</td><td>c3:r7</td><td>c4:r7</td><td>c5:r7</td></tr><tr><td>R8</td><td>c1:r8</td><td>c2:r8</td><td>c3:r8</td><td>c4:r8</td><td>c5:r8</td></tr><tr><td>R9</td><td>c1:r9</td><td>c2:r9</td><td>c3:r9</td><td>c4:r9</td><td>c5:r9</td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 23:19:47','2020-06-15 23:19:47','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1167,9,'2020-06-15 23:19:47','2020-06-15 23:19:47','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td></td><td>C1</td><td>C2</td><td>C3</td><td>C4</td><td>C5</td></tr><tr><td>R1</td><td>c1:r1</td><td>c2:r1</td><td>c3:r1</td><td>c4:r1</td><td>c5:r1</td></tr><tr><td>R2</td><td>c1:r2</td><td>c2:r2</td><td>c3:r2</td><td>c4:r2</td><td>c5:r2</td></tr><tr><td>R3</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R4</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R5</td><td>c1:r5</td><td>c2:r5</td><td>c3:r5</td><td>c4:r5</td><td>c5:r5</td></tr><tr><td>R6</td><td>c1:r6</td><td>c2:r6</td><td>c3:r6</td><td>c4:r6</td><td>c5:r6</td></tr><tr><td>R7</td><td>c1:r7</td><td>c2:r7</td><td>c3:r7</td><td>c4:r7</td><td>c5:r7</td></tr><tr><td>R8</td><td>c1:r8</td><td>c2:r8</td><td>c3:r8</td><td>c4:r8</td><td>c5:r8</td></tr><tr><td>R9</td><td>c1:r9</td><td>c2:r9</td><td>c3:r9</td><td>c4:r9</td><td>c5:r9</td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-15 23:19:47','2020-06-15 23:19:47','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1168,9,'2020-06-16 18:25:17','2020-06-16 18:25:17','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-16 18:25:17','2020-06-16 18:25:17','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1169,9,'2020-06-16 18:26:17','2020-06-16 18:26:17','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":929,\"align\":\"left\",\"width\":387,\"height\":278} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\" width=\"387\" height=\"278\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td></td><td>C1</td><td>C2</td><td>C3</td><td>C4</td><td>C5</td></tr><tr><td>R1</td><td>c1:r1</td><td>c2:r1</td><td>c3:r1</td><td>c4:r1</td><td>c5:r1</td></tr><tr><td>R2</td><td>c1:r2</td><td>c2:r2</td><td>c3:r2</td><td>c4:r2</td><td>c5:r2</td></tr><tr><td>R3</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R4</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R5</td><td>c1:r5</td><td>c2:r5</td><td>c3:r5</td><td>c4:r5</td><td>c5:r5</td></tr><tr><td>R6</td><td>c1:r6</td><td>c2:r6</td><td>c3:r6</td><td>c4:r6</td><td>c5:r6</td></tr><tr><td>R7</td><td>c1:r7</td><td>c2:r7</td><td>c3:r7</td><td>c4:r7</td><td>c5:r7</td></tr><tr><td>R8</td><td>c1:r8</td><td>c2:r8</td><td>c3:r8</td><td>c4:r8</td><td>c5:r8</td></tr><tr><td>R9</td><td>c1:r9</td><td>c2:r9</td><td>c3:r9</td><td>c4:r9</td><td>c5:r9</td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-06-16 18:26:17','2020-06-16 18:26:17','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1173,9,'2020-06-24 01:12:18','2020-06-24 01:12:18','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\" /></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n\n\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-autosave-v1','','','2020-06-24 01:12:18','2020-06-24 01:12:18','',1136,'http://royaldigital.labcp.co/1136-autosave-v1/',0,'revision','',0),(1174,9,'2020-06-24 01:11:22','2020-06-24 01:11:22','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-24 01:11:22','2020-06-24 01:11:22','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1175,9,'2020-06-24 01:12:25','2020-06-24 01:12:25','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\" /></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n\n\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST Page -- All Available Blocks','','inherit','closed','closed','','1136-revision-v1','','','2020-06-24 01:12:25','2020-06-24 01:12:25','',1136,'http://royaldigital.labcp.co/1136-revision-v1/',0,'revision','',0),(1176,9,'2020-06-24 01:14:13','2020-06-24 01:14:13','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\"></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','','','publish','open','open','','1176-2','','','2020-06-24 01:14:14','2020-06-24 01:14:14','',0,'http://royaldigital.labcp.co/?p=1176',0,'post','',0),(1177,9,'2020-06-24 01:14:08','2020-06-24 01:14:08','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\"></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','1176-revision-v1','','','2020-06-24 01:14:08','2020-06-24 01:14:08','',1176,'http://royaldigital.labcp.co/1176-revision-v1/',0,'revision','',0),(1178,9,'2020-06-25 14:46:46','0000-00-00 00:00:00','<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\",\"id\":1124} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">Text over the image</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:list -->\n<ul><li>hehhehe</li><li>heheh</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:cover -->\n<div class=\"wp-block-cover has-background-dim\"><div class=\"wp-block-cover__inner-container\"></div></div>\n<!-- /wp:cover -->','','','draft','open','open','','','','','2020-06-25 14:46:46','2020-06-25 14:46:46','',0,'http://royaldigital.labcp.co/?p=1178',0,'post','',0),(1179,9,'2020-07-02 17:48:33','2020-07-02 17:48:33','<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text <strong>option</strong> <em>within the Gutenberg Editor</em> <s>that</s> can be a <a href=\"httlps://www.google.com\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:image {\"id\":1124} -->\n<figure class=\"wp-block-image\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK-150x150.png\" alt=\"\" class=\"wp-image-1124\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=7hTiNka4NV4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"align\":\"center\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube aligncenter wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=7hTiNka4NV4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":929,\"align\":\"left\",\"width\":387,\"height\":278} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\" width=\"387\" height=\"278\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Nature never appeals to intelligence until habit and instinct are useless. There is no intelligence where there is no need of change... is a Block Quote -- it seems not be taking any formatting.</p><cite>H.G. Wells, The Time Machine... is the citation</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>below this is an embedded file to download...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:file {\"id\":788,\"href\":\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\"} -->\n<div class=\"wp-block-file\"><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\">royal</a><a href=\"http://royaldigital.labcp.co/app/uploads/2019/07/royal.svg\" class=\"wp-block-file__button\" download>Download</a></div>\n<!-- /wp:file -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>This is a Pull Quote</p><cite>this is the Pull Quote\'s citation</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is a 2-column layout</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>This is the right column</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:columns {\"columns\":4} -->\n<div class=\"wp-block-columns has-4-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"very-light-gray\",\"backgroundColor\":\"vivid-green-cyan\"} -->\n<p class=\"has-text-color has-background has-very-light-gray-color has-vivid-green-cyan-background-color\">columns can also have colors</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"textColor\":\"luminous-vivid-amber\",\"backgroundColor\":\"vivid-cyan-blue\"} -->\n<p class=\"has-text-color has-background has-luminous-vivid-amber-color has-vivid-cyan-blue-background-color\">more color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"customTextColor\":\"#00244b\",\"backgroundColor\":\"cyan-bluish-gray\"} -->\n<p style=\"color:#00244b\" class=\"has-text-color has-background has-cyan-bluish-gray-background-color\">also accepts custom color options</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p>can also accept a CSS class to overwrite styling as well</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:table -->\n<table class=\"wp-block-table\"><tbody><tr><td></td><td>C1</td><td>C2</td><td>C3</td><td>C4</td><td>C5</td></tr><tr><td>R1</td><td>c1:r1</td><td>c2:r1</td><td>c3:r1</td><td>c4:r1</td><td>c5:r1</td></tr><tr><td>R2</td><td>c1:r2</td><td>c2:r2</td><td>c3:r2</td><td>c4:r2</td><td>c5:r2</td></tr><tr><td>R3</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R4</td><td>c1:r3</td><td>c2:r3</td><td>c3:r3</td><td>c4:r3</td><td>c5:r3</td></tr><tr><td>R5</td><td>c1:r5</td><td>c2:r5</td><td>c3:r5</td><td>c4:r5</td><td>c5:r5</td></tr><tr><td>R6</td><td>c1:r6</td><td>c2:r6</td><td>c3:r6</td><td>c4:r6</td><td>c5:r6</td></tr><tr><td>R7</td><td>c1:r7</td><td>c2:r7</td><td>c3:r7</td><td>c4:r7</td><td>c5:r7</td></tr><tr><td>R8</td><td>c1:r8</td><td>c2:r8</td><td>c3:r8</td><td>c4:r8</td><td>c5:r8</td></tr><tr><td>R9</td><td>c1:r9</td><td>c2:r9</td><td>c3:r9</td><td>c4:r9</td><td>c5:r9</td></tr></tbody></table>\n<!-- /wp:table -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png\",\"id\":1123} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_JSFamily_032019_Pooldeck_283_RET_CMYK.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">Krishna is a God at Development</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:spacer {\"height\":155} -->\n<div style=\"height:155px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>There is a spacer above this and below this ... i can click and drag toi control the height of these...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a latest posts feed...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-posts /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a comments list below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:latest-comments /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>This is a  Calendar widget...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:calendar /-->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Below is an embed block... there are dozens of embed options we can choose from straight out of the box... this one is a YouTube embed that will appear as long as you enter the URL....</h4>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://www.youtube.com/watch?v=VwHwq5W18uY\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://www.youtube.com/watch?v=VwHwq5W18uY\n</div><figcaption>this is a YouTibe embed...</figcaption></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":929,\"mediaType\":\"image\"} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right\"><figure class=\"wp-block-media-text__media\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock-1024x737.jpg\" alt=\"\" class=\"wp-image-929\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"placeholder\":\"Content…\",\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Etiam dignissim diam quis enim </p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>clicking below will show the rest of the page</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:more -->\n<!--more-->\n<!-- /wp:more -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','TEST POST - All Block Elements','','inherit','closed','closed','','1144-revision-v1','','','2020-07-02 17:48:33','2020-07-02 17:48:33','',1144,'http://royaldigital.labcp.co/1144-revision-v1/',0,'revision','',0),(1180,9,'2020-07-23 23:14:43','2020-07-23 23:14:43','<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2.jpg\",\"id\":1105} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2.jpg)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"right\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:right\" class=\"has-large-font-size\">The thing <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\"> on IT</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->','Home','','inherit','closed','closed','','17-autosave-v1','','','2020-07-23 23:14:43','2020-07-23 23:14:43','',17,'http://royaldigital.labcp.co/17-autosave-v1/',0,'revision','',0),(1181,9,'2020-07-02 18:03:56','0000-00-00 00:00:00','<!-- wp:html /-->','','','draft','open','open','','','','','2020-07-02 18:03:56','2020-07-02 18:03:56','',0,'http://royaldigital.labcp.co/?p=1181',0,'post','',0),(1183,9,'2020-07-08 17:59:30','2020-07-08 17:59:30','','china_supply_chain_future','','inherit','open','closed','','china_supply_chain_future','','','2020-07-08 17:59:30','2020-07-08 17:59:30','',1176,'http://royaldigital.labcp.co/app/uploads/2020/07/china_supply_chain_future.png',0,'attachment','image/png',0),(1184,9,'2020-07-08 18:12:47','2020-07-08 18:12:47','<!-- wp:heading -->\n<h2>better</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><img class=\"wp-image-1105\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/11/FPO-Copy-2.jpg\" alt=\"\"></h4>\n<!-- /wp:heading -->\n\n<!-- wp:video {\"id\":1142} -->\n<figure class=\"wp-block-video\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:heading -->\n<h2>Heading Block for an H2, rightly the only kind of title block that should be on the page below the main title which is an H1</h2>\n<!-- /wp:heading -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png\",\"id\":1137} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2020/06/mobile-1.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\">This is a cover image with text option within the Gutenberg Editor <s>that</s> can be a <a rel=\"noreferrer noopener\" aria-label=\"link (opens in a new tab)\" href=\"httlps://www.google.com\" target=\"_blank\">link</a> would need to be coded otherwise</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>An H3, to preface the image below which is a normal image and not a cover</h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":1124,\"align\":\"left\",\"width\":434,\"height\":289} -->\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/11/RCI_NV_CC_AHendel_032019_LimeAndCoconut_49A3984_RET_CMYK.png\" alt=\"\" class=\"wp-image-1124\" width=\"434\" height=\"289\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>this is an unordered list</li><li>this is an unordered list</li><li>this is an unordered list<ul><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x</li><li>this is an unordered list, tabbed in 1x<ul><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li><li>this is an unordered list, tabbed in 2x</li></ul></li></ul></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:html -->\n<a class=\"btn btn-primary\" style=\"font-size: 20px; background: #0691A9; padding: 15px 30px; color: white; border-radius: 8px; margin: 60px 0 180px; display: table; text-align: center;\" href=\"___insert_your_link_here___\" target=\"_blank\" rel=\"noopener noreferrer\">___insert_your_copy_here___</a>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<h2><a href=\"https://homeport.rccl.com/benefits/us-on-land-benefits/wellness-benefits/employee-assistance-program-eap/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\" wp-image-81366 alignright\" src=\"https://homeport.rccl.com/wp-content/uploads/HP-EAP-LifeWorks-BTN2-800x120.png\" alt=\"\" width=\"547\" height=\"82\"></a></h2>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"row values\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-6\" style=\"display: flex; flex-flow: column; justify-content: center;\">\n\n</div>\n\n<div class=\"col-xs-12\">\n<h2 style=\"font-family: \'Proxima Nova\'; margin: 50px 0; text-align: center;\">Hiring <b style=\"font-family: \'Proxima-Nova-Bold\';\">Process</b></h2>\n</div>\n<div class=\"cards row\" style=\"margin-top: 60px;\">\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">1</div>\n<h4>Find Your Dream Job</h4>\nVisit www.rclcareers.com and find all of the career opportunities available on land and at sea.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">2</div>\n<h4>Introduce Yourself</h4>\nOnce you\'ve decided on the right type of role for you, submit your application, resume and any other required documents.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">3</div>\n<h4>Give Us A Moment</h4>\nAfter submitting your information, we\'ll do our best to tell you that we\'ve received your application within 24 hours.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">4</div>\n<h4>Put Your Best Foot Forward</h4>\nIf we determine that your skills fit the role, we might invite you for an interview. Depending on your position, this may be a video interview or an in-person meeting with potential team members and managers.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">5</div>\n<h4>Take Deep Breaths</h4>\nAfter your interview, our team will meet to discuss your interview performance and make a hiring decision.\n\n</div>\n</div>\n<div class=\"col-xs-12 col-sm-4\">\n<div class=\"card\">\n<div class=\"number\">6</div>\n<h4>Get Ready To Say Yes!</h4>\nYour hiring manager may call you to offer you the job and determine your official start date. Get ready to embark on an exciting and rewarding career.\n\n</div>\n</div>\n</div>\n\n\n<style>.secondary-container { display: none; } .row.culture * { color: white; } .card { background: white; min-height: 300px; display: flex; flex-flow: column; justify-content: center; align-items: center; margin-bottom: 60px; } .card * { color: #00244b !important; } .card img { border-radius: 0; padding-bottom: 20px; } .card h4 { margin-bottom: 20px; padding-left: 10px; padding-right: 10px; color: #0491a9 !important; } .card p { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; min-height: 120px; } .number {   position: absolute;   top: -35px;   background: #0491a9;   padding: 40px;   border-radius: 50%;   height: 40px;   width: 40px;   display: flex;   justify-content: center;   align-items: center;   color: white!important;   font-size: 30px; }</style>\n<!-- /wp:html -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>this is an ordered list</li><li>this is an ordered list</li><li>this is an ordered list<ol><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x</li><li>this is an ordered list, tabbed in 1x<ol><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li><li>this is an ordered list, tabbed in 2x</li></ol></li></ol></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vel elit scelerisque mauris pellentesque pulvinar pellentesque. Placerat vestibulum lectus mauris ultrices. Sapien pellentesque habitant morbi tristique senectus et netus et. Et malesuada fames ac turpis egestas sed. Ullamcorper eget nulla facilisi etiam dignissim diam quis enim lobortis. Urna condimentum mattis pellentesque id nibh. Ultrices gravida dictum fusce ut placerat orci nulla pellentesque dignissim. Turpis egestas integer eget aliquet nibh praesent tristique magna. Ut tristique et egestas quis ipsum suspendisse. Hendrerit gravida rutrum quisque non tellus orci ac auctor augue. Feugiat sed lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":1142,\"align\":\"center\"} -->\n<figure class=\"wp-block-video aligncenter\"><video controls src=\"http://royaldigital.labcp.co/app/uploads/2020/06/Homeport-_-RCL-Employee-Intranet-Google-Chrome-2019-11-25-17-27-50.mp4\"></video><figcaption>this is a video caption</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:paragraph -->\n<p><em>Enim tortor at auctor urna. Nisl nisi scelerisque eu ultrices. At tempor commodo ullamcorper a lacus vestibulum sed arcu. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Tortor id aliquet lectus proin. Vitae sapien pellentesque habitant morbi tristique senectus et netus. Mauris cursus mattis molestie a iaculis at. Tristique magna sit amet purus gravida quis blandit turpis. Facilisis mauris sit amet massa vitae tortor. Convallis posuere morbi leo urna molestie at elementum. Cursus in hac habitasse platea dictumst quisque. Ullamcorper sit amet risus nullam eget felis eget nunc lobortis. Velit laoreet id donec ultrices tincidunt arcu. Condimentum id venenatis a condimentum vitae sapien pellentesque. Purus ut faucibus pulvinar elementum integer enim. Sit amet dictum sit amet justo donec enim diam vulputate. Nulla porttitor massa id neque. Turpis nunc eget lorem dolor. Egestas maecenas pharetra convallis posuere morbi leo urna. At volutpat diam ut venenatis tellus in metus vulputate.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Centered Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"align\":\"right\"} -->\n<div class=\"wp-block-button alignright\"><a class=\"wp-block-button__link\" href=\"https://www.google.com\">Right-aligned Button with Text that leads to Google.com</a></div>\n<!-- /wp:button -->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. <img class=\"wp-image-929\" style=\"width: 300px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. <img class=\"wp-image-929\" style=\"width: 150px;\" src=\"http://royaldigital.labcp.co/app/uploads/2019/09/QN-aerials-exterior-nyc-new-york-city-statue-of-liberty-8-o-clock.jpg\" alt=\"\">Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Lectus nulla at volutpat diam ut venenatis tellus. Cras tincidunt lobortis feugiat vivamus at augue eget arcu dictum. Eu mi bibendum neque egestas. Auctor urna nunc id cursus metus aliquam eleifend mi. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim. Montes nascetur ridiculus mus mauris vitae ultricies leo integer malesuada. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Sed faucibus turpis in eu mi. Non sodales neque sodales ut etiam sit amet nisl purus. Vel eros donec ac odio. Duis at tellus at urna condimentum mattis pellentesque id nibh. Ac felis donec et odio pellentesque diam volutpat commodo. Sit amet cursus sit amet dictum sit amet justo. Sed turpis tincidunt id aliquet risus feugiat in. Vulputate enim nulla aliquet porttitor lacus. Egestas maecenas pharetra convallis posuere morbi leo urna. Consequat semper viverra nam libero justo laoreet sit amet cursus. Suspendisse potenti nullam ac tortor.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p style=\"text-align:center\">Vestibulum morbi blandit cursus risus at ultrices. Vulputate odio ut enim blandit. In nisl nisi scelerisque eu ultrices. Nibh tortor id aliquet lectus proin nibh nisl. Ultricies mi eget mauris pharetra et ultrices neque ornare. Nec nam aliquam sem et tortor consequat. Aliquet risus feugiat in ante metus. Urna cursus eget nunc scelerisque viverra mauris. Massa sed elementum tempus egestas sed. Urna molestie at elementum eu facilisis sed. Et netus et malesuada fames ac turpis egestas. Suspendisse sed nisi lacus sed viverra tellus in hac. Eget felis eget nunc lobortis mattis aliquam faucibus purus. Nunc sed id semper risus. Vitae congue eu consequat ac felis donec et odio pellentesque. Lacinia at quis risus sed vulputate odio ut. Elit ullamcorper dignissim cras tincidunt lobortis feugiat. Tellus integer feugiat scelerisque varius morbi enim nunc faucibus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p style=\"text-align:right\">Etiam dignissim diam quis enim lobortis scelerisque fermentum dui faucibus. Auctor urna nunc id cursus metus. Cras fermentum odio eu feugiat pretium nibh ipsum. Lectus proin nibh nisl condimentum id. Massa tincidunt dui ut ornare lectus sit. Condimentum vitae sapien pellentesque habitant morbi tristique senectus. Turpis cursus in hac habitasse platea. Enim nunc faucibus a pellentesque. Scelerisque varius morbi enim nunc faucibus a pellentesque sit amet. Eu consequat ac felis donec et odio pellentesque diam volutpat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>Here\'s an H4 to preface a gallery below...</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 3 column gallery...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":3} -->\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 5 column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":5} -->\n<ul class=\"wp-block-gallery columns-5 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a 4-column gallery</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":4} -->\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Here\'s a  1-column gallery -- with uncropped images -- unlike the rest which are all cropped...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[1007,1006,1005,1004,985],\"columns\":1} -->\n<ul class=\"wp-block-gallery columns-1 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-09-20-at-3.33.58-PM-1024x675.png\" alt=\"\" data-id=\"1007\" data-link=\"http://royaldigital.labcp.co/screen-shot-2019-09-20-at-3-33-58-pm/\" class=\"wp-image-1007\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/Screen-Shot-2019-08-09-at-2.23.20-PM-1024x567.png\" alt=\"\" data-id=\"1006\" data-link=\"http://royaldigital.labcp.co/faq/test-new-post-format/screen-shot-2019-08-09-at-2-23-20-pm/\" class=\"wp-image-1006\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/celebrity-473x1024.png\" alt=\"\" data-id=\"1005\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/celebrity-3/\" class=\"wp-image-1005\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/azamara-473x1024.png\" alt=\"\" data-id=\"1004\" data-link=\"http://royaldigital.labcp.co/faq/which-ships-currently-have-the-app/azamara-3/\" class=\"wp-image-1004\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise-1024x737.jpg\" alt=\"\" data-id=\"985\" data-link=\"http://royaldigital.labcp.co/ships/navigator/labadee-aerial-navigator-of-the-seas-port-of-call-haiti-next-cruise-nextcruise/\" class=\"wp-image-985\"/></figure></li></ul>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','1176-autosave-v1','','','2020-07-08 18:12:47','2020-07-08 18:12:47','',1176,'http://royaldigital.labcp.co/1176-autosave-v1/',0,'revision','',0),(1186,9,'2020-07-16 17:35:25','2020-07-16 17:35:25','<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/ZgQMW4eVrzw\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/ZgQMW4eVrzw\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:image {\"id\":921,\"align\":\"center\",\"width\":354,\"height\":347} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1565293392977.png\" alt=\"\" class=\"wp-image-921\" width=\"354\" height=\"347\"/></figure></div>\n<!-- /wp:image -->','','','publish','open','open','','1186-2','','','2020-07-16 17:55:26','2020-07-16 17:55:26','',0,'http://royaldigital.labcp.co/?p=1186',0,'post','',0),(1187,9,'2020-07-16 17:31:25','2020-07-16 17:31:25','<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/ZgQMW4eVrzw\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/ZgQMW4eVrzw\n</div></figure>\n<!-- /wp:core-embed/youtube -->','','','inherit','closed','closed','','1186-revision-v1','','','2020-07-16 17:31:25','2020-07-16 17:31:25','',1186,'http://royaldigital.labcp.co/1186-revision-v1/',0,'revision','',0),(1188,9,'2020-07-16 17:55:26','2020-07-16 17:55:26','<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/ZgQMW4eVrzw\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/ZgQMW4eVrzw\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:image {\"id\":921,\"align\":\"center\",\"width\":354,\"height\":347} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img src=\"http://royaldigital.labcp.co/app/uploads/2019/09/1565293392977.png\" alt=\"\" class=\"wp-image-921\" width=\"354\" height=\"347\"/></figure></div>\n<!-- /wp:image -->','','','inherit','closed','closed','','1186-revision-v1','','','2020-07-16 17:55:26','2020-07-16 17:55:26','',1186,'http://royaldigital.labcp.co/1186-revision-v1/',0,'revision','',0),(1189,9,'2020-07-27 21:16:13','0000-00-00 00:00:00','<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Mary was a little Lamb</p><cite>Andrew Dice Clay</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>Mary was a Little Lamb</p><cite>Andrew Dice Clay</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:cover {\"url\":\"http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM.png\",\"id\":1117} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-image:url(http://royaldigital.labcp.co/app/uploads/2019/11/Screen-Shot-2019-11-06-at-2.23.24-PM.png)\"><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p style=\"text-align:center\" class=\"has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:video -->\n<figure class=\"wp-block-video\"></figure>\n<!-- /wp:video -->','','','draft','open','open','','','','','2020-07-27 21:16:13','2020-07-27 21:16:13','',0,'http://royaldigital.labcp.co/?p=1189',0,'post','',0),(1190,9,'2020-07-22 23:30:42','2020-07-22 23:30:42','<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Mary was a little Lamb</p><cite>Andrew Dice Clay</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>Mary was a Little Lamb</p><cite>Andrew Dice Clay</cite></blockquote></figure>\n<!-- /wp:pullquote -->','','','inherit','closed','closed','','1189-revision-v1','','','2020-07-22 23:30:42','2020-07-22 23:30:42','',1189,'http://royaldigital.labcp.co/1189-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (25,4,0),(28,5,0),(29,5,0),(30,5,0),(119,2,0),(145,2,0),(146,2,0),(166,1,0),(205,3,0),(207,1,0),(212,6,0),(212,9,0),(212,10,0),(212,35,0),(212,36,0),(212,37,0),(212,39,0),(212,40,0),(274,1,0),(278,1,0),(312,6,0),(312,17,0),(312,18,0),(332,15,0),(332,16,0),(332,19,0),(332,20,0),(332,21,0),(332,22,0),(332,23,0),(332,42,0),(332,43,0),(334,15,0),(334,16,0),(334,41,0),(334,42,0),(334,44,0),(335,15,0),(335,16,0),(335,41,0),(335,43,0),(335,44,0),(336,15,0),(336,16,0),(336,41,0),(336,43,0),(336,44,0),(337,14,0),(337,15,0),(337,16,0),(337,20,0),(337,21,0),(337,22,0),(337,23,0),(337,27,0),(337,28,0),(337,41,0),(337,42,0),(337,43,0),(353,1,0),(367,13,0),(367,14,0),(380,13,0),(380,16,0),(381,13,0),(381,15,0),(381,21,0),(381,23,0),(391,14,0),(391,15,0),(391,16,0),(391,41,0),(391,43,0),(391,44,0),(392,14,0),(392,15,0),(392,16,0),(392,42,0),(392,43,0),(393,14,0),(393,15,0),(393,16,0),(393,20,0),(393,21,0),(393,22,0),(393,27,0),(393,42,0),(393,43,0),(394,15,0),(394,16,0),(394,20,0),(394,21,0),(394,22,0),(394,29,0),(394,42,0),(394,43,0),(395,15,0),(395,16,0),(395,21,0),(395,30,0),(395,42,0),(395,43,0),(396,15,0),(396,23,0),(396,31,0),(396,42,0),(396,43,0),(397,15,0),(397,16,0),(397,23,0),(397,32,0),(397,42,0),(398,15,0),(398,16,0),(398,21,0),(398,33,0),(398,42,0),(398,43,0),(399,15,0),(399,21,0),(399,23,0),(399,34,0),(399,42,0),(399,43,0),(574,1,0),(688,4,0),(696,1,0),(795,6,0),(795,7,0),(804,6,0),(889,14,0),(889,15,0),(889,16,0),(889,20,0),(889,21,0),(889,22,0),(889,23,0),(889,41,0),(889,42,0),(889,43,0),(889,44,0),(895,1,0),(952,14,0),(952,15,0),(952,16,0),(952,20,0),(952,21,0),(952,22,0),(952,23,0),(952,28,0),(952,41,0),(952,42,0),(952,43,0),(952,44,0),(1017,1,0),(1017,6,0),(1024,1,0),(1024,17,0),(1024,35,0),(1024,36,0),(1024,37,0),(1024,39,0),(1024,45,0),(1056,14,0),(1056,15,0),(1056,16,0),(1056,44,0),(1130,1,0),(1144,1,0),(1176,1,0),(1178,1,0),(1181,1,0),(1186,1,0),(1189,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,4),(2,2,'nav_menu','',0,3),(3,3,'nav_menu','',0,1),(4,4,'nav_menu','',0,2),(5,5,'nav_menu','',0,3),(6,6,'category','',0,5),(7,7,'category','',0,1),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,1),(10,10,'post_tag','',0,1),(11,11,'post_tag','',0,0),(12,12,'post_format','',0,0),(13,13,'post_format','',0,0),(14,14,'create_taxonomy_faq','',0,7),(15,15,'create_taxonomy_faq','',0,17),(16,16,'create_taxonomy_faq','',0,15),(17,17,'post_tag','',0,1),(18,18,'post_tag','',0,1),(19,19,'faq-tag','',0,1),(20,20,'faq-tag','',0,6),(21,21,'faq-tag','',0,10),(22,22,'faq-tag','',0,6),(23,23,'faq-tag','',0,8),(24,24,'post_tag','',0,0),(25,25,'post_tag','',0,0),(26,26,'post_tag','',0,0),(27,27,'faq-tag','',0,2),(28,28,'faq-tag','',0,2),(29,29,'faq-tag','',0,1),(30,30,'faq-tag','',0,1),(31,31,'faq-tag','',0,1),(32,32,'faq-tag','',0,1),(33,33,'faq-tag','',0,1),(34,34,'faq-tag','',0,1),(35,35,'post_tag','',0,1),(36,36,'post_tag','',0,1),(37,37,'post_tag','',0,1),(38,38,'post_tag','',0,0),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,1),(41,41,'create_subcategory_faq','',0,7),(42,42,'create_subcategory_faq','',0,13),(43,43,'create_subcategory_faq','',0,14),(44,44,'create_subcategory_faq','',0,6),(45,45,'post_tag','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,14,'link_ios_app_faq','https://apps.apple.com/us/app/azamara-club-cruises/id1445077748'),(2,14,'_link_ios_app_faq','field_5d83d63bc335f'),(3,14,'link_android_app_faq','https://play.google.com/store/apps/details?id=com.rccl.azamara&hl=en_US'),(4,14,'_link_android_app_faq','field_5d83d650c3360'),(5,15,'link_ios_app_faq','https://apps.apple.com/us/app/celebrity-cruises/id1313008863'),(6,15,'_link_ios_app_faq','field_5d83d63bc335f'),(7,15,'link_android_app_faq','https://play.google.com/store/apps/details?id=com.rccl.celebrity&hl=en_US'),(8,15,'_link_android_app_faq','field_5d83d650c3360'),(9,16,'link_ios_app_faq','https://apps.apple.com/us/app/royal-caribbean-international/id1260728016'),(10,16,'_link_ios_app_faq','field_5d83d63bc335f'),(11,16,'link_android_app_faq','https://play.google.com/store/apps/details?id=com.rccl.royalcaribbean&hl=en_US'),(12,16,'_link_android_app_faq','field_5d83d650c3360');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Brands','brands',0),(3,'News','news',0),(4,'Engage','engage',0),(5,'Footer','footer',0),(6,'Technology','technology',0),(7,'In The Press','in-the-press',0),(8,'0','0',0),(9,'ships','ships',0),(10,'travel','travel',0),(11,'Caribbean','caribbean',0),(12,'post-format-audio','post-format-audio',0),(13,'post-format-video','post-format-video',0),(14,'Azamara','azamara',0),(15,'Celebrity Cruises','celebrity-cruises',0),(16,'Royal Caribbean International','royal-caribbean-international',0),(17,'technology','technology',0),(18,'check in','check-in',0),(19,'FAQ','faq',0),(20,'Royal Caribbean','royal-caribbean',0),(21,'Celebrity','celebrity',0),(22,'Azamara','azamara',0),(23,'App','app',0),(24,'post','post',0),(25,'test','test',0),(26,'brands','brands',0),(27,'Guest Account','guest-account',0),(28,'Technology','technology',0),(29,'Digital Key','digital-key',0),(30,'MyTV','mytv',0),(31,'Stateroom Automation','stateroom-automation',0),(32,'Chat','chat',0),(33,'augmented reality','augmented-reality',0),(34,'Edge','edge',0),(35,'app','app',0),(36,'celebrity','celebrity',0),(37,'azamara','azamara',0),(38,'royal careibbean','royal-careibbean',0),(39,'Royal Caribbean','royal-caribbean',0),(40,'cruises','cruises',0),(41,'Check In','check-in',0),(42,'Onboard','onboard',0),(43,'Planning my Cruise','planning-my-cruise',0),(44,'At the terminal','at-the-terminal',0),(45,'plan my cruise','plan-my-cruise',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'show_welcome_panel','0'),(17,1,'wp_dashboard_quick_press_last_post_id','1140'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"189.14.150.0\";}'),(19,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(20,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(21,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(22,1,'wp_user-settings-time','1571073156'),(23,1,'nav_menu_recently_edited','3'),(24,1,'closedpostboxes_ships','a:0:{}'),(25,1,'metaboxhidden_ships','a:1:{i:0;s:7:\"slugdiv\";}'),(26,1,'acf_user_settings','a:1:{s:14:\"gallery_height\";s:3:\"399\";}'),(27,2,'nickname','rccl'),(28,2,'first_name','JJ'),(29,2,'last_name','JJ'),(30,2,'description',''),(31,2,'rich_editing','true'),(32,2,'syntax_highlighting','true'),(33,2,'comment_shortcuts','false'),(34,2,'admin_color','fresh'),(35,2,'use_ssl','0'),(36,2,'show_admin_bar_front','true'),(37,2,'locale',''),(38,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(39,2,'wp_user_level','10'),(40,2,'dismissed_wp_pointers',''),(41,2,'session_tokens','a:1:{s:64:\"711f9596dfac41c43825565a54a3ec12715527433592113e1970faf43b9b331b\";a:4:{s:10:\"expiration\";i:1579271286;s:2:\"ip\";s:13:\"165.225.32.50\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15\";s:5:\"login\";i:1579098486;}}'),(42,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"66.110.73.0\";}'),(43,2,'wp_user-settings','mfold=o&libraryContent=browse&editor=tinymce'),(44,2,'wp_user-settings-time','1568835048'),(45,2,'wp_dashboard_quick_press_last_post_id','1136'),(46,1,'closedpostboxes_acf-field-group','a:0:{}'),(47,1,'metaboxhidden_acf-field-group','a:1:{i:0;s:7:\"slugdiv\";}'),(48,2,'closedpostboxes_post','a:1:{i:0;s:23:\"acf-group_5d72c2b7daefc\";}'),(49,2,'metaboxhidden_post','a:0:{}'),(50,1,'closedpostboxes_post','a:0:{}'),(51,1,'metaboxhidden_post','a:0:{}'),(52,3,'nickname','cpadovano'),(53,3,'first_name','Costantino'),(54,3,'last_name','Padovano'),(55,3,'description',''),(56,3,'rich_editing','true'),(57,3,'syntax_highlighting','true'),(58,3,'comment_shortcuts','false'),(59,3,'admin_color','fresh'),(60,3,'use_ssl','0'),(61,3,'show_admin_bar_front','true'),(62,3,'locale',''),(63,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(64,3,'wp_user_level','10'),(65,3,'dismissed_wp_pointers',''),(66,3,'session_tokens','a:1:{s:64:\"e76e8759b5f3c8b2c925e18d7b2ee00e6a7babfbd043c609545fb168b83541cf\";a:4:{s:10:\"expiration\";i:1568469856;s:2:\"ip\";s:13:\"165.225.32.49\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36\";s:5:\"login\";i:1568297056;}}'),(67,3,'wp_dashboard_quick_press_last_post_id','719'),(68,3,'community-events-location','a:1:{s:2:\"ip\";s:12:\"12.238.120.0\";}'),(70,2,'_new_email','a:2:{s:4:\"hash\";s:32:\"9258313a1cb46b414fce3d14215f4db7\";s:8:\"newemail\";s:16:\"jjuhasz@rccl.com\";}'),(71,2,'closedpostboxes_faq','a:0:{}'),(72,2,'metaboxhidden_faq','a:1:{i:0;s:7:\"slugdiv\";}'),(73,3,'wp_user-settings','libraryContent=browse'),(74,3,'wp_user-settings-time','1565892968'),(75,1,'closedpostboxes_dashboard','a:4:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";}'),(76,1,'metaboxhidden_dashboard','a:0:{}'),(77,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:38:\"dashboard_right_now,dashboard_activity\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(78,4,'nickname','aorsini'),(79,4,'first_name','Alberto'),(80,4,'last_name','Orsini'),(81,4,'description',''),(82,4,'rich_editing','true'),(83,4,'syntax_highlighting','true'),(84,4,'comment_shortcuts','false'),(85,4,'admin_color','fresh'),(86,4,'use_ssl','0'),(87,4,'show_admin_bar_front','true'),(88,4,'locale',''),(89,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(90,4,'wp_user_level','10'),(91,4,'dismissed_wp_pointers',''),(92,2,'closedpostboxes_ships','a:0:{}'),(93,2,'metaboxhidden_ships','a:1:{i:0;s:7:\"slugdiv\";}'),(94,4,'session_tokens','a:1:{s:64:\"c822cc812df79660098158462fbbbb3998711f9a64c9fb890c9d3454e5700c33\";a:4:{s:10:\"expiration\";i:1573224762;s:2:\"ip\";s:10:\"4.7.43.195\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15\";s:5:\"login\";i:1573051962;}}'),(95,4,'wp_dashboard_quick_press_last_post_id','1060'),(96,4,'community-events-location','a:1:{s:2:\"ip\";s:8:\"4.7.43.0\";}'),(97,4,'wp_user-settings','libraryContent=browse'),(98,4,'wp_user-settings-time','1567111473'),(99,4,'wp_media_library_mode','list'),(100,5,'nickname','bherde'),(101,5,'first_name',''),(102,5,'last_name',''),(103,5,'description',''),(104,5,'rich_editing','true'),(105,5,'syntax_highlighting','true'),(106,5,'comment_shortcuts','false'),(107,5,'admin_color','fresh'),(108,5,'use_ssl','0'),(109,5,'show_admin_bar_front','true'),(110,5,'locale',''),(111,5,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(112,5,'wp_user_level','10'),(113,5,'dismissed_wp_pointers',''),(114,5,'session_tokens','a:1:{s:64:\"95f4353777e2ae320613c89cacdd53237d13a61d058fb88b089c8bffc41fea21\";a:4:{s:10:\"expiration\";i:1571061322;s:2:\"ip\";s:15:\"104.129.204.254\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:5:\"login\";i:1569851722;}}'),(115,5,'wp_dashboard_quick_press_last_post_id','1015'),(116,5,'community-events-location','a:1:{s:2:\"ip\";s:11:\"66.110.73.0\";}'),(117,6,'nickname','snance'),(118,6,'first_name',''),(119,6,'last_name',''),(120,6,'description',''),(121,6,'rich_editing','true'),(122,6,'syntax_highlighting','true'),(123,6,'comment_shortcuts','false'),(124,6,'admin_color','fresh'),(125,6,'use_ssl','0'),(126,6,'show_admin_bar_front','true'),(127,6,'locale',''),(128,6,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(129,6,'wp_user_level','2'),(130,6,'dismissed_wp_pointers',''),(131,6,'session_tokens','a:2:{s:64:\"b4edb28690bcbe1597d433f126bee0b114b54a37134ddbdf7de806c64daaedf1\";a:4:{s:10:\"expiration\";i:1574433138;s:2:\"ip\";s:13:\"189.14.150.96\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36\";s:5:\"login\";i:1574260338;}s:64:\"ec1364ff969d8d8cdabde7131390a886a880eb01880f3693f9dadf64ca3712ef\";a:4:{s:10:\"expiration\";i:1574531223;s:2:\"ip\";s:15:\"104.129.204.105\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36\";s:5:\"login\";i:1574358423;}}'),(132,6,'wp_dashboard_quick_press_last_post_id','1133'),(133,6,'community-events-location','a:1:{s:2:\"ip\";s:11:\"66.110.73.0\";}'),(134,6,'closedpostboxes_dashboard','a:1:{i:0;s:17:\"dashboard_primary\";}'),(135,6,'metaboxhidden_dashboard','a:0:{}'),(136,1,'session_tokens','a:1:{s:64:\"08e7b3e234af5ca2243de5325812e65a069eebb0955599eeb7b3b93601fe8444\";a:4:{s:10:\"expiration\";i:1591815380;s:2:\"ip\";s:13:\"189.14.150.96\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36\";s:5:\"login\";i:1591642580;}}'),(137,7,'nickname','rwhite'),(138,7,'first_name',''),(139,7,'last_name',''),(140,7,'description',''),(141,7,'rich_editing','true'),(142,7,'syntax_highlighting','true'),(143,7,'comment_shortcuts','false'),(144,7,'admin_color','fresh'),(145,7,'use_ssl','0'),(146,7,'show_admin_bar_front','true'),(147,7,'locale',''),(148,7,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(149,7,'wp_user_level','2'),(150,7,'dismissed_wp_pointers',''),(152,7,'wp_dashboard_quick_press_last_post_id','1135'),(153,7,'community-events-location','a:1:{s:2:\"ip\";s:11:\"72.28.216.0\";}'),(155,8,'nickname','phammer'),(156,8,'first_name','Peter'),(157,8,'last_name','Hammer'),(158,8,'description',''),(159,8,'rich_editing','true'),(160,8,'syntax_highlighting','true'),(161,8,'comment_shortcuts','false'),(162,8,'admin_color','fresh'),(163,8,'use_ssl','0'),(164,8,'show_admin_bar_front','true'),(165,8,'locale',''),(166,8,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(167,8,'wp_user_level','10'),(168,8,'dismissed_wp_pointers',''),(169,8,'session_tokens','a:2:{s:64:\"8f33d99189688ad66e5457b52841a096f9e0674bf3dc9218197a6a4159f6a057\";a:4:{s:10:\"expiration\";i:1591808141;s:2:\"ip\";s:15:\"165.225.222.119\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36\";s:5:\"login\";i:1591635341;}s:64:\"96915153f4da1657887617c6cf66bd02a7140ffea7b824e218d6b5f2f3439a94\";a:4:{s:10:\"expiration\";i:1591808981;s:2:\"ip\";s:15:\"165.225.222.119\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36\";s:5:\"login\";i:1591636181;}}'),(170,8,'users_per_page','20'),(171,9,'nickname','Garo'),(172,9,'first_name','Garo'),(173,9,'last_name','Moumdjian'),(174,9,'description',''),(175,9,'rich_editing','true'),(176,9,'syntax_highlighting','true'),(177,9,'comment_shortcuts','false'),(178,9,'admin_color','fresh'),(179,9,'use_ssl','0'),(180,9,'show_admin_bar_front','true'),(181,9,'locale',''),(182,9,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(183,9,'wp_user_level','10'),(184,9,'dismissed_wp_pointers',''),(185,10,'nickname','Cesar'),(186,10,'first_name','Cesar'),(187,10,'last_name','Caldera'),(188,10,'description',''),(189,10,'rich_editing','true'),(190,10,'syntax_highlighting','true'),(191,10,'comment_shortcuts','false'),(192,10,'admin_color','fresh'),(193,10,'use_ssl','0'),(194,10,'show_admin_bar_front','true'),(195,10,'locale',''),(196,10,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(197,10,'wp_user_level','10'),(198,10,'dismissed_wp_pointers',''),(199,11,'nickname','Byron'),(200,11,'first_name','Byron'),(201,11,'last_name','Gronseth'),(202,11,'description',''),(203,11,'rich_editing','true'),(204,11,'syntax_highlighting','true'),(205,11,'comment_shortcuts','false'),(206,11,'admin_color','fresh'),(207,11,'use_ssl','0'),(208,11,'show_admin_bar_front','true'),(209,11,'locale',''),(210,11,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(211,11,'wp_user_level','10'),(212,11,'dismissed_wp_pointers',''),(213,8,'wp_dashboard_quick_press_last_post_id','1133'),(214,8,'community-events-location','a:1:{s:2:\"ip\";s:13:\"165.225.222.0\";}'),(216,9,'wp_dashboard_quick_press_last_post_id','1191'),(217,9,'community-events-location','a:1:{s:2:\"ip\";s:13:\"170.250.106.0\";}'),(218,9,'nav_menu_recently_edited','2'),(219,9,'managenav-menuscolumnshidden','a:0:{}'),(220,9,'metaboxhidden_nav-menus','a:1:{i:0;s:20:\"add-post-type-brands\";}'),(221,9,'closedpostboxes_page','a:0:{}'),(222,9,'metaboxhidden_page','a:0:{}'),(223,9,'wp_user-settings','libraryContent=browse&editor=tinymce'),(224,9,'wp_user-settings-time','1594231310'),(225,9,'enable_custom_fields','1'),(226,9,'closedpostboxes_post','a:1:{i:0;s:23:\"acf-group_5d3083e5df416\";}'),(227,9,'metaboxhidden_post','a:0:{}'),(228,12,'nickname','Krishna'),(229,12,'first_name','Krishna'),(230,12,'last_name','Nuli'),(231,12,'description',''),(232,12,'rich_editing','true'),(233,12,'syntax_highlighting','true'),(234,12,'comment_shortcuts','false'),(235,12,'admin_color','fresh'),(236,12,'use_ssl','0'),(237,12,'show_admin_bar_front','true'),(238,12,'locale',''),(239,12,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(240,12,'wp_user_level','10'),(241,12,'dismissed_wp_pointers',''),(243,12,'session_tokens','a:1:{s:64:\"cfbaa8c468d6f85b069022b58264dcc374cbbf3f08e21c0f9ce636762a4b67d8\";a:4:{s:10:\"expiration\";i:1593013233;s:2:\"ip\";s:14:\"66.176.224.136\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\";s:5:\"login\";i:1591803633;}}'),(244,12,'community-events-location','a:1:{s:2:\"ip\";s:12:\"66.176.224.0\";}'),(245,9,'closedpostboxes_nav-menus','a:0:{}'),(247,13,'nickname','Fabi'),(248,13,'first_name','Fabian'),(249,13,'last_name','Vera'),(250,13,'description',''),(251,13,'rich_editing','true'),(252,13,'syntax_highlighting','true'),(253,13,'comment_shortcuts','false'),(254,13,'admin_color','fresh'),(255,13,'use_ssl','0'),(256,13,'show_admin_bar_front','true'),(257,13,'locale',''),(258,13,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(259,13,'wp_user_level','10'),(260,13,'dismissed_wp_pointers',''),(261,13,'session_tokens','a:1:{s:64:\"201e57a00347cb013c9b0155058d4d118327ceb751a7b3cb4eee0d06aa289b7c\";a:4:{s:10:\"expiration\";i:1597246531;s:2:\"ip\";s:13:\"181.43.97.204\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36\";s:5:\"login\";i:1597073731;}}'),(262,9,'session_tokens','a:1:{s:64:\"8d75537e8081c0c729873636b1eae36f827e502cbc03dea545eadc228728d29b\";a:4:{s:10:\"expiration\";i:1597246378;s:2:\"ip\";s:14:\"165.225.222.89\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36\";s:5:\"login\";i:1597073578;}}'),(263,14,'nickname','Aldo'),(264,14,'first_name','Aldo'),(265,14,'last_name','De La Paz'),(266,14,'description',''),(267,14,'rich_editing','true'),(268,14,'syntax_highlighting','true'),(269,14,'comment_shortcuts','false'),(270,14,'admin_color','fresh'),(271,14,'use_ssl','0'),(272,14,'show_admin_bar_front','true'),(273,14,'locale',''),(274,14,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(275,14,'wp_user_level','7'),(276,14,'dismissed_wp_pointers',''),(277,15,'nickname','Monica'),(278,15,'first_name','Monica'),(279,15,'last_name','Osorno'),(280,15,'description',''),(281,15,'rich_editing','true'),(282,15,'syntax_highlighting','true'),(283,15,'comment_shortcuts','false'),(284,15,'admin_color','fresh'),(285,15,'use_ssl','0'),(286,15,'show_admin_bar_front','true'),(287,15,'locale',''),(288,15,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(289,15,'wp_user_level','7'),(290,15,'dismissed_wp_pointers',''),(291,16,'nickname','Jose'),(292,16,'first_name','Jose'),(293,16,'last_name','Morales Prieto'),(294,16,'description',''),(295,16,'rich_editing','true'),(296,16,'syntax_highlighting','true'),(297,16,'comment_shortcuts','false'),(298,16,'admin_color','fresh'),(299,16,'use_ssl','0'),(300,16,'show_admin_bar_front','true'),(301,16,'locale',''),(302,16,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(303,16,'wp_user_level','7'),(304,16,'dismissed_wp_pointers',''),(305,17,'nickname','David'),(306,17,'first_name','David'),(307,17,'last_name','Buiatti'),(308,17,'description',''),(309,17,'rich_editing','true'),(310,17,'syntax_highlighting','true'),(311,17,'comment_shortcuts','false'),(312,17,'admin_color','fresh'),(313,17,'use_ssl','0'),(314,17,'show_admin_bar_front','true'),(315,17,'locale',''),(316,17,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(317,17,'wp_user_level','7'),(318,17,'dismissed_wp_pointers',''),(319,14,'session_tokens','a:1:{s:64:\"cf2d13b1fad6703bde92cffbb1d407b9fb12cc4acd8032bab7bfd0dedc51fa0e\";a:4:{s:10:\"expiration\";i:1595870262;s:2:\"ip\";s:12:\"98.254.65.90\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36\";s:5:\"login\";i:1594660662;}}'),(320,14,'wp_dashboard_quick_press_last_post_id','1192'),(321,14,'community-events-location','a:1:{s:2:\"ip\";s:11:\"98.254.65.0\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$2y$10$xsDC0yv7LkVtVtV7W50W9eo3g9cH6gcp3VbnvWuUPYQxmdCBkASce','admin','dev@cappen.com','','2019-06-26 14:23:32','',0,'admin'),(2,'rccl','$2y$10$Ld2Si0KZ8YrYaFpa5431LeYLIkZ8e5ahHONwD9SvqMWqyDVayZgUe','rccl','rquinones@rccl.com','','2019-07-22 20:46:21','1563828381:$P$BVYj3j1i.mu3axUFZKUZ1vHAiCLL02.',0,'rccl'),(3,'cpadovano','$2y$10$ZPlbTOr.TRG496WhIK5sTOhJ.XISq4qkMrCf1pXpLL8pypOuvJQSS','cpadovano','cpadovano@rccl.com','','2019-08-13 14:25:14','',0,'cpadovano'),(4,'aorsini','$2y$10$jCScy.j36XPHVnOldXN.Ten1qFa5/ifeHXMF2PKkpoEW.GQVBiyIu','aorsini','aorsini@rccl.com','','2019-08-19 13:38:36','',0,'Alberto Orsini'),(5,'bherde','$2y$10$NBJVOCwuIkuHEy8WjQ/K.OWrWPxbU0J546TwiT5elBZaopVJSV6Qa','bherde','bherde@rccl.com','','2019-09-13 17:46:58','',0,'bherde'),(6,'snance','$2y$10$zZ/id5tsvil1pMxDUm1XzOHnBLtpE1gZXS6U/fk5.P.xFkycnYCbi','snance','snance@rccl.com','','2019-11-20 14:31:25','',0,'snance'),(7,'rwhite','$2y$10$hQ14wbn2RdolBcXlomsUwOMAooNkUvh80VLuZCjJl5Hdi/PgrD1fG','rwhite','rwhite@rccl.com','','2019-11-22 14:07:32','',0,'rwhite'),(8,'phammer','$2y$10$4U3v5SEKgnhdVkNzw4dXG.LKdqdbYfgYzPiOp0tvKX0kkk0LvFu4e','phammer','phammer@rccl.com','','2020-01-15 15:09:33','',0,'phammer'),(9,'Garo','$2y$10$lTDrVz.567ES01L6P/3wQOhwDLcgrzMCNkoPwZY4q5KBRkGqDq1bu','garo','gmoumdjian@rccl.com','','2020-06-08 17:00:01','1591635601:$P$BF/xFBJC7XctPljTx2.p.xnWeXyaY8/',0,'Garo Moumdjian'),(10,'Cesar','$2y$10$jleDExxl27n86U5Vw1QuwuJfvzJVpb7elYaHEyvPgzmXYqWgsVw22','cesar','ccaldera@rccl.com','','2020-06-08 17:00:38','1591635638:$P$BBbd7rzYQ7uzqXrED23KcAiDg0L8WE1',0,'Cesar Caldera'),(11,'Byron','$2y$10$XD37ryHIjnJfcLQbh6GhgOpTYZ2t5OcxcvfjMX5yySu50Taf10Kt2','byron','brgonseth@rccl.com','','2020-06-08 17:01:10','1591635670:$P$BUX/2vlZQetME0.PJBnodcNMQoYNyT1',0,'Byron Gronseth'),(12,'Krishna','$2y$10$wGRprQCwYrxTsvetifCR9uDyrQjt0en3D6MLjUM5CPBtfmGPQ7VF2','krishna','knuli@rccl.com','','2020-06-10 15:30:56','1591803057:$P$Bx8N2QUlTfmBEIdf7Bnio7A3DR1gUM.',0,'Krishna Nuli'),(13,'Fabi','$2y$10$qro8PcLt46GGv7Zp9xHW.Opox8uzI.OZJFoo.mvpiVzBnYVSD.Lp.','fabi','f.vera@globant.com','','2020-06-22 16:25:31','1593110023:$P$BuB2tecNusCeclNhP7IA5ETnp.u1A6.',0,'Fabian Vera'),(14,'Aldo','$2y$10$lSuTeMtEMbQMge8vv1pPm.JADrdBEng08nOd.CkuzQHNzVUUKWhDy','aldo','adelapaz@rccl.com','','2020-07-13 17:07:41','1594660061:$P$BDJzAp2f35UGJOFMVaTMLaQyzcgDfD/',0,'Aldo De La Paz'),(15,'Monica','$2y$10$z.GAr6S4LMFLK2G65SG76.jNZeWt9klabB2gOydRRx.bldZEOVLQG','monica','mosorno@rccl.com','','2020-07-13 17:08:19','1594660099:$P$BMj8Nz4XF368hfRmJ93XlCMcnbdD/81',0,'Monica Osorno'),(16,'Jose','$2y$10$PSB59558A3QYKyOvTeRdUesmuyslf2qpVFfbb52qvfqsSXjQJJ5LC','jose','jmoralesprieto@rccl.com','','2020-07-13 17:11:24','1594660284:$P$BAAt5bnmeljieWS.wh4hcT/QLBjF8s1',0,'Jose Morales Prieto'),(17,'David','$2y$10$dJcOxDAcaIDOhZUFRxqRZO4ZsywYP6xE24JNCC92YtuSrve1.0BQm','david','dbuiatti@rccl.com','','2020-07-13 17:14:49','1594660489:$P$BWlCNHI5lMS6UmtxvmEh3ddUML2Vjh/',0,'David Buiatti');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2022-03-08 10:11:58
