-- MySQL dump 10.13  Distrib 5.7.31, for Linux (x86_64)
--
-- Host: localhost    Database: oneacademy
-- ------------------------------------------------------
-- 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',
  `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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2020-12-21 23:03:35','2020-12-21 23:03:35','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=733 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','https://oneacademy.labcp.co//wp','yes'),(4,'home','https://oneacademy.labcp.co//wp','yes'),(5,'blogname','One Academy','yes'),(6,'blogdescription','','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:94:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&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:35:\"crop-thumbnails/crop-thumbnails.php\";i:2;s:21:\"safe-svg/safe-svg.php\";}','yes'),(36,'category_base','','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','oneacademy','yes'),(43,'stylesheet','oneacademy','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','5','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1624143815','yes'),(94,'disallowed_keys','','no'),(95,'comment_previously_approved','1','yes'),(96,'auto_plugin_theme_update_emails','a:0:{}','no'),(97,'auto_update_core_dev','enabled','yes'),(98,'auto_update_core_minor','enabled','yes'),(99,'auto_update_core_major','enabled','yes'),(100,'initial_db_version','49752','yes'),(101,'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'),(102,'fresh_site','0','yes'),(103,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'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'),(105,'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'),(106,'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'),(107,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(108,'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'),(109,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:0:{}s:5:\"count\";i:0;}','no'),(110,'cron','a:6:{i:1614171816;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1614207815;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:1614207816;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1614207820;a:3:{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;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1614726215;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(111,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'nonce_key','^e=UM7,{=geHtOwtNH{LiZ@$}9+OE$@n/g;{(1w2#mLFB-|/7yYJdl.QZ6?&pA)}','no'),(118,'nonce_salt','4i/e)M3h[7 YH?o*Mj3ajrQWlxzufa99n]L.!d|*?%tx[QNJ:A.ga=TFyu:j}JSg','no'),(119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1608591895;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(124,'recovery_keys','a:0:{}','yes'),(125,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.6.2-partial-1.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.6.2\";s:7:\"version\";s:5:\"5.6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"5.6.1\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.6.2-partial-1.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.2-rollback-1.zip\";}s:7:\"current\";s:5:\"5.6.2\";s:7:\"version\";s:5:\"5.6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"5.6.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1614170841;s:15:\"version_checked\";s:5:\"5.6.1\";s:12:\"translations\";a:0:{}}','no'),(126,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1614170841;s:8:\"response\";a:1:{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:5:\"5.9.5\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.6\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:35:\"crop-thumbnails/crop-thumbnails.php\";O:8:\"stdClass\":9:{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.3.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.3.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:21:\"safe-svg/safe-svg.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/safe-svg\";s:4:\"slug\";s:8:\"safe-svg\";s:6:\"plugin\";s:21:\"safe-svg/safe-svg.php\";s:11:\"new_version\";s:5:\"1.9.9\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/safe-svg/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/safe-svg.1.9.9.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:61:\"https://ps.w.org/safe-svg/assets/icon-256x256.png?rev=1706191\";s:2:\"1x\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=1706191\";s:3:\"svg\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=1706191\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/safe-svg/assets/banner-1544x500.png?rev=1706191\";s:2:\"1x\";s:63:\"https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=1706191\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(127,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1614170843;s:7:\"checked\";a:4:{s:10:\"oneacademy\";s:5:\"1.0.0\";s:14:\"twentynineteen\";s:3:\"1.9\";s:12:\"twentytwenty\";s:3:\"1.6\";s:15:\"twentytwentyone\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.9.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.6.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(128,'secure_auth_key','S[$mYnGU|V3BlCTaT0gKL3(P$xJiSO>jLsvwAsW~(OEzmu.f3j*SeBP J%_#?;&g','no'),(129,'secure_auth_salt','hdZ0O8H}$(&!I&t<>Kf>ew!Vdy<r_[~~VV{Z1Jexq[&x@$t{N-$c:@H2h5?jb1p)','no'),(130,'logged_in_key','vDr1}/:KT-Fv4AZH)|Q:x3w:YRx?FU`p}7h)o!Nbd!nM{x> hSTixiN@3K;k79Zc','no'),(131,'logged_in_salt','(5tNwE4E 6u&@lN*QAN|n$;`TXrB<nWAc86X:H0Z[R8qM4<dP?ko(j3XlKE/sn(W','no'),(139,'can_compress_scripts','0','no'),(152,'finished_updating_comment_type','1','yes'),(153,'template_root','/themes','yes'),(154,'stylesheet_root','/themes','yes'),(155,'current_theme','Oneacademy','yes'),(156,'theme_mods_oneacademy','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(157,'theme_switched','','yes'),(158,'recently_activated','a:0:{}','yes'),(159,'acf_version','5.9.3','yes'),(173,'_transient_health-check-site-status-result','{\"good\":11,\"recommended\":5,\"critical\":4}','yes'),(211,'WPLANG','','yes'),(212,'new_admin_email','dev@cappen.com','yes'),(217,'auth_key','b/9$`tBvF8qPGy 0Z,>;i%iP$Eh){AwATXf.hg_D1`Mxq{7{:a%NC2VqW*Uk{,E{','no'),(218,'auth_salt','f&`L5VSn)_BU>dG. eXAbq$-Ztc4c[9G0AN^%&lJIu7g&5,*&T@_xIo+<(ktSg[_','no'),(358,'options_gold_header','One Academy','no'),(359,'_options_gold_header','field_5ffde33a4c08b','no'),(360,'options_black_header','Virtual','no'),(361,'_options_black_header','field_5ffde3404c08c','no'),(362,'options_switch_text_1','Switch to','no'),(363,'_options_switch_text_1','field_5ffde3b24c08d','no'),(364,'options_switch_text_2','One Academy Facility','no'),(365,'_options_switch_text_2','field_5ffde40e4c08e','no'),(366,'options_link_switch','https://oneacademylife.com/home/','no'),(367,'_options_link_switch','field_5ffde4234c08f','no'),(368,'options_gold_footer','One Academy','no'),(369,'_options_gold_footer','field_5ffdcd77b62b1','no'),(370,'options_white_footer','Virtual','no'),(371,'_options_white_footer','field_5ffdcd90b62b2','no'),(372,'options_text_footer','Take pride in being part of our growing virtual community. With 1 week of unlimited Virtual Classes for $25, you’ve got plenty of reasons to make crushing it at home part of your new, normal routine.','no'),(373,'_options_text_footer','field_5ffdce2e0a038','no'),(374,'options_link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week','no'),(375,'_options_link_button','field_5ffdce480a039','no'),(376,'options_text_button','Book Now','no'),(377,'_options_text_button','field_5ffdce6a0a03a','no'),(378,'options_copyright_symbol','©','no'),(379,'_options_copyright_symbol','field_5ffdcf3d807cb','no'),(380,'options_copyright_text','One Academy®. All Rights Reserved.','no'),(381,'_options_copyright_text','field_5ffdcf9e807cd','no'),(382,'options_title_newsletter','Newsletter','no'),(383,'_options_title_newsletter','field_5ffdd01a82aca','no'),(384,'options_notice','By submitting this form, you are consenting to receive marketing emails from: One Academy, 858 Eastern Ave, Toronto, ON, Ontario, M4L1A1, CA, <a href=\"https://www.oneacademylife.com\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.oneacademylife.com.</a> You can revoke your consent to receive emails at any time by using the SafeUnsubscribe® link, found at the bottom of every email. Emails are serviced by Constant Contact.','no'),(385,'_options_notice','field_5ffdd04982acb','no'),(386,'options_title_contact','Contact Us','no'),(387,'_options_title_contact','field_5ffdddbc24e81','no'),(388,'options_telephones_0_number','1 (647) 245-8544','no'),(389,'_options_telephones_0_number','field_5ffdde0824e83','no'),(390,'options_telephones','1','no'),(391,'_options_telephones','field_5ffdddf424e82','no'),(392,'options_emails_0_email','info@Oneacademylife.com','no'),(393,'_options_emails_0_email','field_5ffdde2224e85','no'),(394,'options_emails','1','no'),(395,'_options_emails','field_5ffdde2224e84','no'),(396,'options_address','858 Eastern Ave, Toronto, ON M4L 1A1 Canada','no'),(397,'_options_address','field_5ffdde5e24e86','no'),(398,'options_image_contact','131','no'),(399,'_options_image_contact','field_5ffde654119f4','no'),(400,'options_social_networks_0_name','Facebook','no'),(401,'_options_social_networks_0_name','field_5ffde08b43dc9','no'),(402,'options_social_networks_0_link','https://www.facebook.com/OneAcademyLife/','no'),(403,'_options_social_networks_0_link','field_5ffde01343dc7','no'),(404,'options_social_networks_0_black','133','no'),(405,'_options_social_networks_0_black','field_5ffde0e843dcd','no'),(406,'options_social_networks_0_white','132','no'),(407,'_options_social_networks_0_white','field_5ffde0e543dcc','no'),(408,'options_social_networks_0_gold','134','no'),(409,'_options_social_networks_0_gold','field_5ffde07043dc8','no'),(410,'options_social_networks_0_blue','135','no'),(411,'_options_social_networks_0_blue','field_5ffde0d243dcb','no'),(412,'options_social_networks_1_name','Instagram','no'),(413,'_options_social_networks_1_name','field_5ffde08b43dc9','no'),(414,'options_social_networks_1_link','https://www.instagram.com/oneacademylife/','no'),(415,'_options_social_networks_1_link','field_5ffde01343dc7','no'),(416,'options_social_networks_1_black','137','no'),(417,'_options_social_networks_1_black','field_5ffde0e843dcd','no'),(418,'options_social_networks_1_white','136','no'),(419,'_options_social_networks_1_white','field_5ffde0e543dcc','no'),(420,'options_social_networks_1_gold','138','no'),(421,'_options_social_networks_1_gold','field_5ffde07043dc8','no'),(422,'options_social_networks_1_blue','139','no'),(423,'_options_social_networks_1_blue','field_5ffde0d243dcb','no'),(424,'options_social_networks','2','no'),(425,'_options_social_networks','field_5ffde01343dc6','no'),(672,'_site_transient_timeout_php_check_8445f3f6d5c32e543da408dfa7e06e48','1614181937','no'),(673,'_site_transient_php_check_8445f3f6d5c32e543da408dfa7e06e48','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(689,'_site_transient_timeout_browser_5cd022c67bba483be4643a4599b579f2','1614277061','no'),(690,'_site_transient_browser_5cd022c67bba483be4643a4599b579f2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"88.0.4324.104\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(703,'_site_transient_timeout_browser_7a836d9e2a1e518d9c3a517fec1df0d5','1614277327','no'),(704,'_site_transient_browser_7a836d9e2a1e518d9c3a517fec1df0d5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"88.0.4324.146\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(707,'_site_transient_timeout_browser_54855be98a049915c6fe552dcf945444','1614278546','no'),(708,'_site_transient_browser_54855be98a049915c6fe552dcf945444','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"88.0.4324.150\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(729,'_transient_timeout_acf_plugin_updates','1614343642','no'),(730,'_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:5:\"5.9.5\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.6\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s: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.9.3\";}}','no'),(731,'_site_transient_timeout_theme_roots','1614172642','no'),(732,'_site_transient_theme_roots','a:4:{s:10:\"oneacademy\";s:7:\"/themes\";s:14:\"twentynineteen\";s:56:\"/home/forge/oneacademy.labcp.co/web/wp/wp-content/themes\";s:12:\"twentytwenty\";s:56:\"/home/forge/oneacademy.labcp.co/web/wp/wp-content/themes\";s:15:\"twentytwentyone\";s:56:\"/home/forge/oneacademy.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=7969 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_edit_lock','1613674882:1'),(4,5,'_edit_last','1'),(5,5,'_wp_page_template','page-home.php'),(6,8,'_edit_lock','1610638906:1'),(7,5,'title_gold',''),(8,5,'_title_gold','field_5ffc850fff400'),(9,5,'title_white','One Academy Virtual'),(10,5,'_title_white','field_5ffc8523ff401'),(11,5,'value','25'),(12,5,'_value','field_5ffc87023f4a1'),(13,5,'text_banner','1-Week Unlimited Virtual Classes'),(14,5,'_text_banner','field_5ffc87313f4a2'),(15,5,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(16,5,'_link_button','field_5ffc87543f4a3'),(17,5,'text_button_banner','Start Now'),(18,5,'_text_button_banner','field_5ffc87833f4a4'),(19,5,'text_button_scroll_top','Book Now'),(20,5,'_text_button_scroll_top','field_5ffc87983f4a5'),(21,5,'background_banner','179'),(22,5,'_background_banner','field_5ffc85ebcc1e9'),(23,5,'static_image',''),(24,5,'_static_image','field_5ffc85fdcc1ea'),(25,5,'animated','0'),(26,5,'_animated','field_5ffc8668cc1eb'),(27,5,'animated_image','80'),(28,5,'_animated_image','field_5ffc8683cc1ec'),(29,5,'title_reasons','10 Reasons'),(30,5,'_title_reasons','field_5ffc9f7220389'),(31,5,'reasons_0_text','Reason'),(32,5,'_reasons_0_text','field_5ffca05ea140c'),(33,5,'reasons_0_number','1'),(34,5,'_reasons_0_number','field_5ffca0a9a140d'),(35,5,'reasons_0_title','Get ready to turn your home into your new gym'),(36,5,'_reasons_0_title','field_5ffca1c17dcbd'),(37,5,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(38,5,'_reasons_0_content','field_5ffca1d37dcbe'),(39,5,'reasons_0_static','54'),(40,5,'_reasons_0_static','field_5ffca9f36c9c1'),(41,5,'reasons_0_animate','0'),(42,5,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(43,5,'reasons_0_background_color','lightgray2'),(44,5,'_reasons_0_background_color','field_5ffca2087dcc0'),(45,5,'reasons_0_background_image','56'),(46,5,'_reasons_0_background_image','field_5ffca965f8d44'),(47,5,'reasons_1_text','Reason'),(48,5,'_reasons_1_text','field_5ffca05ea140c'),(49,5,'reasons_1_number','2'),(50,5,'_reasons_1_number','field_5ffca0a9a140d'),(51,5,'reasons_1_title','Toronto’s best gym'),(52,5,'_reasons_1_title','field_5ffca1c17dcbd'),(53,5,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(54,5,'_reasons_1_content','field_5ffca1d37dcbe'),(55,5,'reasons_1_static','58'),(56,5,'_reasons_1_static','field_5ffca9f36c9c1'),(57,5,'reasons_1_animate','0'),(58,5,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(59,5,'reasons_1_background_color','darkgray'),(60,5,'_reasons_1_background_color','field_5ffca2087dcc0'),(61,5,'reasons_1_background_image',''),(62,5,'_reasons_1_background_image','field_5ffca965f8d44'),(63,5,'reasons_2_text','Reason'),(64,5,'_reasons_2_text','field_5ffca05ea140c'),(65,5,'reasons_2_number','3'),(66,5,'_reasons_2_number','field_5ffca0a9a140d'),(67,5,'reasons_2_title','Virtual classes with live coaches'),(68,5,'_reasons_2_title','field_5ffca1c17dcbd'),(69,5,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(70,5,'_reasons_2_content','field_5ffca1d37dcbe'),(71,5,'reasons_2_static','61'),(72,5,'_reasons_2_static','field_5ffca9f36c9c1'),(73,5,'reasons_2_animate','1'),(74,5,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(75,5,'reasons_2_background_color','white'),(76,5,'_reasons_2_background_color','field_5ffca2087dcc0'),(77,5,'reasons_2_background_image',''),(78,5,'_reasons_2_background_image','field_5ffca965f8d44'),(79,5,'reasons_3_text','Reason'),(80,5,'_reasons_3_text','field_5ffca05ea140c'),(81,5,'reasons_3_number','4'),(82,5,'_reasons_3_number','field_5ffca0a9a140d'),(83,5,'reasons_3_title','One community'),(84,5,'_reasons_3_title','field_5ffca1c17dcbd'),(85,5,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(86,5,'_reasons_3_content','field_5ffca1d37dcbe'),(87,5,'reasons_3_static','64'),(88,5,'_reasons_3_static','field_5ffca9f36c9c1'),(89,5,'reasons_3_animate','0'),(90,5,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(91,5,'reasons_3_background_color','darkgray'),(92,5,'_reasons_3_background_color','field_5ffca2087dcc0'),(93,5,'reasons_3_background_image','65'),(94,5,'_reasons_3_background_image','field_5ffca965f8d44'),(95,5,'reasons_4_text','Reason'),(96,5,'_reasons_4_text','field_5ffca05ea140c'),(97,5,'reasons_4_number','5'),(98,5,'_reasons_4_number','field_5ffca0a9a140d'),(99,5,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(100,5,'_reasons_4_title','field_5ffca1c17dcbd'),(101,5,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(102,5,'_reasons_4_content','field_5ffca1d37dcbe'),(103,5,'reasons_4_static',''),(104,5,'_reasons_4_static','field_5ffca9f36c9c1'),(105,5,'reasons_4_animate','0'),(106,5,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(107,5,'reasons_4_background_color','video'),(108,5,'_reasons_4_background_color','field_5ffca2087dcc0'),(109,5,'reasons_4_background_image',''),(110,5,'_reasons_4_background_image','field_5ffca965f8d44'),(111,5,'reasons_5_text','Reason'),(112,5,'_reasons_5_text','field_5ffca05ea140c'),(113,5,'reasons_5_number','6'),(114,5,'_reasons_5_number','field_5ffca0a9a140d'),(115,5,'reasons_5_title','More members means you pay less'),(116,5,'_reasons_5_title','field_5ffca1c17dcbd'),(117,5,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(118,5,'_reasons_5_content','field_5ffca1d37dcbe'),(119,5,'reasons_5_static',''),(120,5,'_reasons_5_static','field_5ffca9f36c9c1'),(121,5,'reasons_5_animate','0'),(122,5,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(123,5,'reasons_5_background_color','video'),(124,5,'_reasons_5_background_color','field_5ffca2087dcc0'),(125,5,'reasons_5_background_image',''),(126,5,'_reasons_5_background_image','field_5ffca965f8d44'),(127,5,'reasons_6_text','Reason'),(128,5,'_reasons_6_text','field_5ffca05ea140c'),(129,5,'reasons_6_number','7'),(130,5,'_reasons_6_number','field_5ffca0a9a140d'),(131,5,'reasons_6_title','Break your routine'),(132,5,'_reasons_6_title','field_5ffca1c17dcbd'),(133,5,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(134,5,'_reasons_6_content','field_5ffca1d37dcbe'),(135,5,'reasons_6_static','86'),(136,5,'_reasons_6_static','field_5ffca9f36c9c1'),(137,5,'reasons_6_animate','0'),(138,5,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(139,5,'reasons_6_background_color','darkgray'),(140,5,'_reasons_6_background_color','field_5ffca2087dcc0'),(141,5,'reasons_6_background_image',''),(142,5,'_reasons_6_background_image','field_5ffca965f8d44'),(143,5,'reasons_7_text','Reason'),(144,5,'_reasons_7_text','field_5ffca05ea140c'),(145,5,'reasons_7_number','8'),(146,5,'_reasons_7_number','field_5ffca0a9a140d'),(147,5,'reasons_7_title','Your pace, your training'),(148,5,'_reasons_7_title','field_5ffca1c17dcbd'),(149,5,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(150,5,'_reasons_7_content','field_5ffca1d37dcbe'),(151,5,'reasons_7_static','74'),(152,5,'_reasons_7_static','field_5ffca9f36c9c1'),(153,5,'reasons_7_animate','0'),(154,5,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(155,5,'reasons_7_background_color','white'),(156,5,'_reasons_7_background_color','field_5ffca2087dcc0'),(157,5,'reasons_7_background_image',''),(158,5,'_reasons_7_background_image','field_5ffca965f8d44'),(159,5,'reasons_8_text','Reason'),(160,5,'_reasons_8_text','field_5ffca05ea140c'),(161,5,'reasons_8_number','9'),(162,5,'_reasons_8_number','field_5ffca0a9a140d'),(163,5,'reasons_8_title','Expertly crafted workouts'),(164,5,'_reasons_8_title','field_5ffca1c17dcbd'),(165,5,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(166,5,'_reasons_8_content','field_5ffca1d37dcbe'),(167,5,'reasons_8_static','75'),(168,5,'_reasons_8_static','field_5ffca9f36c9c1'),(169,5,'reasons_8_animate','0'),(170,5,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(171,5,'reasons_8_background_color','lightgray3'),(172,5,'_reasons_8_background_color','field_5ffca2087dcc0'),(173,5,'reasons_8_background_image',''),(174,5,'_reasons_8_background_image','field_5ffca965f8d44'),(175,5,'reasons_9_text','Reason'),(176,5,'_reasons_9_text','field_5ffca05ea140c'),(177,5,'reasons_9_number','10'),(178,5,'_reasons_9_number','field_5ffca0a9a140d'),(179,5,'reasons_9_title','Convenient class times'),(180,5,'_reasons_9_title','field_5ffca1c17dcbd'),(181,5,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(182,5,'_reasons_9_content','field_5ffca1d37dcbe'),(183,5,'reasons_9_static','76'),(184,5,'_reasons_9_static','field_5ffca9f36c9c1'),(185,5,'reasons_9_animate','0'),(186,5,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(187,5,'reasons_9_background_color','darkgray'),(188,5,'_reasons_9_background_color','field_5ffca2087dcc0'),(189,5,'reasons_9_background_image',''),(190,5,'_reasons_9_background_image','field_5ffca965f8d44'),(191,5,'reasons','10'),(192,5,'_reasons','field_5ffc9fa9a140a'),(193,41,'title_gold','One Academy'),(194,41,'_title_gold','field_5ffc850fff400'),(195,41,'title_white','Virtual'),(196,41,'_title_white','field_5ffc8523ff401'),(197,41,'value',''),(198,41,'_value','field_5ffc87023f4a1'),(199,41,'text_banner',''),(200,41,'_text_banner','field_5ffc87313f4a2'),(201,41,'link_button',''),(202,41,'_link_button','field_5ffc87543f4a3'),(203,41,'text_button_banner',''),(204,41,'_text_button_banner','field_5ffc87833f4a4'),(205,41,'text_button_scroll_top',''),(206,41,'_text_button_scroll_top','field_5ffc87983f4a5'),(207,41,'background_banner',''),(208,41,'_background_banner','field_5ffc85ebcc1e9'),(209,41,'static_image',''),(210,41,'_static_image','field_5ffc85fdcc1ea'),(211,41,'animated','1'),(212,41,'_animated','field_5ffc8668cc1eb'),(213,41,'animated_image',''),(214,41,'_animated_image','field_5ffc8683cc1ec'),(215,41,'title_reasons',''),(216,41,'_title_reasons','field_5ffc9f7220389'),(217,41,'reasons_0_text','Reason'),(218,41,'_reasons_0_text','field_5ffca05ea140c'),(219,41,'reasons_0_number','1'),(220,41,'_reasons_0_number','field_5ffca0a9a140d'),(221,41,'reasons_0_title',''),(222,41,'_reasons_0_title','field_5ffca1c17dcbd'),(223,41,'reasons_0_content',''),(224,41,'_reasons_0_content','field_5ffca1d37dcbe'),(225,41,'reasons_0_static',''),(226,41,'_reasons_0_static','field_5ffca9f36c9c1'),(227,41,'reasons_0_animate','0'),(228,41,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(229,41,'reasons_0_background_color','lightgray2'),(230,41,'_reasons_0_background_color','field_5ffca2087dcc0'),(231,41,'reasons_0_background_image',''),(232,41,'_reasons_0_background_image','field_5ffca965f8d44'),(233,41,'reasons_1_text','Reason'),(234,41,'_reasons_1_text','field_5ffca05ea140c'),(235,41,'reasons_1_number','1'),(236,41,'_reasons_1_number','field_5ffca0a9a140d'),(237,41,'reasons_1_title',''),(238,41,'_reasons_1_title','field_5ffca1c17dcbd'),(239,41,'reasons_1_content',''),(240,41,'_reasons_1_content','field_5ffca1d37dcbe'),(241,41,'reasons_1_static',''),(242,41,'_reasons_1_static','field_5ffca9f36c9c1'),(243,41,'reasons_1_animate','0'),(244,41,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(245,41,'reasons_1_background_color','lightgray2'),(246,41,'_reasons_1_background_color','field_5ffca2087dcc0'),(247,41,'reasons_1_background_image',''),(248,41,'_reasons_1_background_image','field_5ffca965f8d44'),(249,41,'reasons_2_text','Reason'),(250,41,'_reasons_2_text','field_5ffca05ea140c'),(251,41,'reasons_2_number','1'),(252,41,'_reasons_2_number','field_5ffca0a9a140d'),(253,41,'reasons_2_title',''),(254,41,'_reasons_2_title','field_5ffca1c17dcbd'),(255,41,'reasons_2_content',''),(256,41,'_reasons_2_content','field_5ffca1d37dcbe'),(257,41,'reasons_2_static',''),(258,41,'_reasons_2_static','field_5ffca9f36c9c1'),(259,41,'reasons_2_animate','0'),(260,41,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(261,41,'reasons_2_background_color','lightgray2'),(262,41,'_reasons_2_background_color','field_5ffca2087dcc0'),(263,41,'reasons_2_background_image',''),(264,41,'_reasons_2_background_image','field_5ffca965f8d44'),(265,41,'reasons_3_text','Reason'),(266,41,'_reasons_3_text','field_5ffca05ea140c'),(267,41,'reasons_3_number','1'),(268,41,'_reasons_3_number','field_5ffca0a9a140d'),(269,41,'reasons_3_title',''),(270,41,'_reasons_3_title','field_5ffca1c17dcbd'),(271,41,'reasons_3_content',''),(272,41,'_reasons_3_content','field_5ffca1d37dcbe'),(273,41,'reasons_3_static',''),(274,41,'_reasons_3_static','field_5ffca9f36c9c1'),(275,41,'reasons_3_animate','0'),(276,41,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(277,41,'reasons_3_background_color','lightgray2'),(278,41,'_reasons_3_background_color','field_5ffca2087dcc0'),(279,41,'reasons_3_background_image',''),(280,41,'_reasons_3_background_image','field_5ffca965f8d44'),(281,41,'reasons_4_text','Reason'),(282,41,'_reasons_4_text','field_5ffca05ea140c'),(283,41,'reasons_4_number','1'),(284,41,'_reasons_4_number','field_5ffca0a9a140d'),(285,41,'reasons_4_title',''),(286,41,'_reasons_4_title','field_5ffca1c17dcbd'),(287,41,'reasons_4_content',''),(288,41,'_reasons_4_content','field_5ffca1d37dcbe'),(289,41,'reasons_4_static',''),(290,41,'_reasons_4_static','field_5ffca9f36c9c1'),(291,41,'reasons_4_animate','0'),(292,41,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(293,41,'reasons_4_background_color','lightgray2'),(294,41,'_reasons_4_background_color','field_5ffca2087dcc0'),(295,41,'reasons_4_background_image',''),(296,41,'_reasons_4_background_image','field_5ffca965f8d44'),(297,41,'reasons_5_text','Reason'),(298,41,'_reasons_5_text','field_5ffca05ea140c'),(299,41,'reasons_5_number','1'),(300,41,'_reasons_5_number','field_5ffca0a9a140d'),(301,41,'reasons_5_title',''),(302,41,'_reasons_5_title','field_5ffca1c17dcbd'),(303,41,'reasons_5_content',''),(304,41,'_reasons_5_content','field_5ffca1d37dcbe'),(305,41,'reasons_5_static',''),(306,41,'_reasons_5_static','field_5ffca9f36c9c1'),(307,41,'reasons_5_animate','0'),(308,41,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(309,41,'reasons_5_background_color','lightgray2'),(310,41,'_reasons_5_background_color','field_5ffca2087dcc0'),(311,41,'reasons_5_background_image',''),(312,41,'_reasons_5_background_image','field_5ffca965f8d44'),(313,41,'reasons_6_text','Reason'),(314,41,'_reasons_6_text','field_5ffca05ea140c'),(315,41,'reasons_6_number','1'),(316,41,'_reasons_6_number','field_5ffca0a9a140d'),(317,41,'reasons_6_title',''),(318,41,'_reasons_6_title','field_5ffca1c17dcbd'),(319,41,'reasons_6_content',''),(320,41,'_reasons_6_content','field_5ffca1d37dcbe'),(321,41,'reasons_6_static',''),(322,41,'_reasons_6_static','field_5ffca9f36c9c1'),(323,41,'reasons_6_animate','0'),(324,41,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(325,41,'reasons_6_background_color','lightgray2'),(326,41,'_reasons_6_background_color','field_5ffca2087dcc0'),(327,41,'reasons_6_background_image',''),(328,41,'_reasons_6_background_image','field_5ffca965f8d44'),(329,41,'reasons_7_text','Reason'),(330,41,'_reasons_7_text','field_5ffca05ea140c'),(331,41,'reasons_7_number','1'),(332,41,'_reasons_7_number','field_5ffca0a9a140d'),(333,41,'reasons_7_title',''),(334,41,'_reasons_7_title','field_5ffca1c17dcbd'),(335,41,'reasons_7_content',''),(336,41,'_reasons_7_content','field_5ffca1d37dcbe'),(337,41,'reasons_7_static',''),(338,41,'_reasons_7_static','field_5ffca9f36c9c1'),(339,41,'reasons_7_animate','0'),(340,41,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(341,41,'reasons_7_background_color','lightgray2'),(342,41,'_reasons_7_background_color','field_5ffca2087dcc0'),(343,41,'reasons_7_background_image',''),(344,41,'_reasons_7_background_image','field_5ffca965f8d44'),(345,41,'reasons_8_text','Reason'),(346,41,'_reasons_8_text','field_5ffca05ea140c'),(347,41,'reasons_8_number','1'),(348,41,'_reasons_8_number','field_5ffca0a9a140d'),(349,41,'reasons_8_title',''),(350,41,'_reasons_8_title','field_5ffca1c17dcbd'),(351,41,'reasons_8_content',''),(352,41,'_reasons_8_content','field_5ffca1d37dcbe'),(353,41,'reasons_8_static',''),(354,41,'_reasons_8_static','field_5ffca9f36c9c1'),(355,41,'reasons_8_animate','0'),(356,41,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(357,41,'reasons_8_background_color','lightgray2'),(358,41,'_reasons_8_background_color','field_5ffca2087dcc0'),(359,41,'reasons_8_background_image',''),(360,41,'_reasons_8_background_image','field_5ffca965f8d44'),(361,41,'reasons_9_text','Reason'),(362,41,'_reasons_9_text','field_5ffca05ea140c'),(363,41,'reasons_9_number','1'),(364,41,'_reasons_9_number','field_5ffca0a9a140d'),(365,41,'reasons_9_title',''),(366,41,'_reasons_9_title','field_5ffca1c17dcbd'),(367,41,'reasons_9_content',''),(368,41,'_reasons_9_content','field_5ffca1d37dcbe'),(369,41,'reasons_9_static',''),(370,41,'_reasons_9_static','field_5ffca9f36c9c1'),(371,41,'reasons_9_animate','0'),(372,41,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(373,41,'reasons_9_background_color','lightgray2'),(374,41,'_reasons_9_background_color','field_5ffca2087dcc0'),(375,41,'reasons_9_background_image',''),(376,41,'_reasons_9_background_image','field_5ffca965f8d44'),(377,41,'reasons','10'),(378,41,'_reasons','field_5ffc9fa9a140a'),(379,42,'title_gold','One Academy'),(380,42,'_title_gold','field_5ffc850fff400'),(381,42,'title_white','Virtual'),(382,42,'_title_white','field_5ffc8523ff401'),(383,42,'value','25'),(384,42,'_value','field_5ffc87023f4a1'),(385,42,'text_banner','1-Week Unlimited Virtual Classes'),(386,42,'_text_banner','field_5ffc87313f4a2'),(387,42,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(388,42,'_link_button','field_5ffc87543f4a3'),(389,42,'text_button_banner','Start Now'),(390,42,'_text_button_banner','field_5ffc87833f4a4'),(391,42,'text_button_scroll_top','Book Now'),(392,42,'_text_button_scroll_top','field_5ffc87983f4a5'),(393,42,'background_banner',''),(394,42,'_background_banner','field_5ffc85ebcc1e9'),(395,42,'static_image',''),(396,42,'_static_image','field_5ffc85fdcc1ea'),(397,42,'animated','1'),(398,42,'_animated','field_5ffc8668cc1eb'),(399,42,'animated_image',''),(400,42,'_animated_image','field_5ffc8683cc1ec'),(401,42,'title_reasons',''),(402,42,'_title_reasons','field_5ffc9f7220389'),(403,42,'reasons_0_text','Reason'),(404,42,'_reasons_0_text','field_5ffca05ea140c'),(405,42,'reasons_0_number','1'),(406,42,'_reasons_0_number','field_5ffca0a9a140d'),(407,42,'reasons_0_title',''),(408,42,'_reasons_0_title','field_5ffca1c17dcbd'),(409,42,'reasons_0_content',''),(410,42,'_reasons_0_content','field_5ffca1d37dcbe'),(411,42,'reasons_0_static',''),(412,42,'_reasons_0_static','field_5ffca9f36c9c1'),(413,42,'reasons_0_animate','0'),(414,42,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(415,42,'reasons_0_background_color','lightgray2'),(416,42,'_reasons_0_background_color','field_5ffca2087dcc0'),(417,42,'reasons_0_background_image',''),(418,42,'_reasons_0_background_image','field_5ffca965f8d44'),(419,42,'reasons_1_text','Reason'),(420,42,'_reasons_1_text','field_5ffca05ea140c'),(421,42,'reasons_1_number','1'),(422,42,'_reasons_1_number','field_5ffca0a9a140d'),(423,42,'reasons_1_title',''),(424,42,'_reasons_1_title','field_5ffca1c17dcbd'),(425,42,'reasons_1_content',''),(426,42,'_reasons_1_content','field_5ffca1d37dcbe'),(427,42,'reasons_1_static',''),(428,42,'_reasons_1_static','field_5ffca9f36c9c1'),(429,42,'reasons_1_animate','0'),(430,42,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(431,42,'reasons_1_background_color','lightgray2'),(432,42,'_reasons_1_background_color','field_5ffca2087dcc0'),(433,42,'reasons_1_background_image',''),(434,42,'_reasons_1_background_image','field_5ffca965f8d44'),(435,42,'reasons_2_text','Reason'),(436,42,'_reasons_2_text','field_5ffca05ea140c'),(437,42,'reasons_2_number','1'),(438,42,'_reasons_2_number','field_5ffca0a9a140d'),(439,42,'reasons_2_title',''),(440,42,'_reasons_2_title','field_5ffca1c17dcbd'),(441,42,'reasons_2_content',''),(442,42,'_reasons_2_content','field_5ffca1d37dcbe'),(443,42,'reasons_2_static',''),(444,42,'_reasons_2_static','field_5ffca9f36c9c1'),(445,42,'reasons_2_animate','0'),(446,42,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(447,42,'reasons_2_background_color','lightgray2'),(448,42,'_reasons_2_background_color','field_5ffca2087dcc0'),(449,42,'reasons_2_background_image',''),(450,42,'_reasons_2_background_image','field_5ffca965f8d44'),(451,42,'reasons_3_text','Reason'),(452,42,'_reasons_3_text','field_5ffca05ea140c'),(453,42,'reasons_3_number','1'),(454,42,'_reasons_3_number','field_5ffca0a9a140d'),(455,42,'reasons_3_title',''),(456,42,'_reasons_3_title','field_5ffca1c17dcbd'),(457,42,'reasons_3_content',''),(458,42,'_reasons_3_content','field_5ffca1d37dcbe'),(459,42,'reasons_3_static',''),(460,42,'_reasons_3_static','field_5ffca9f36c9c1'),(461,42,'reasons_3_animate','0'),(462,42,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(463,42,'reasons_3_background_color','lightgray2'),(464,42,'_reasons_3_background_color','field_5ffca2087dcc0'),(465,42,'reasons_3_background_image',''),(466,42,'_reasons_3_background_image','field_5ffca965f8d44'),(467,42,'reasons_4_text','Reason'),(468,42,'_reasons_4_text','field_5ffca05ea140c'),(469,42,'reasons_4_number','1'),(470,42,'_reasons_4_number','field_5ffca0a9a140d'),(471,42,'reasons_4_title',''),(472,42,'_reasons_4_title','field_5ffca1c17dcbd'),(473,42,'reasons_4_content',''),(474,42,'_reasons_4_content','field_5ffca1d37dcbe'),(475,42,'reasons_4_static',''),(476,42,'_reasons_4_static','field_5ffca9f36c9c1'),(477,42,'reasons_4_animate','0'),(478,42,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(479,42,'reasons_4_background_color','lightgray2'),(480,42,'_reasons_4_background_color','field_5ffca2087dcc0'),(481,42,'reasons_4_background_image',''),(482,42,'_reasons_4_background_image','field_5ffca965f8d44'),(483,42,'reasons_5_text','Reason'),(484,42,'_reasons_5_text','field_5ffca05ea140c'),(485,42,'reasons_5_number','1'),(486,42,'_reasons_5_number','field_5ffca0a9a140d'),(487,42,'reasons_5_title',''),(488,42,'_reasons_5_title','field_5ffca1c17dcbd'),(489,42,'reasons_5_content',''),(490,42,'_reasons_5_content','field_5ffca1d37dcbe'),(491,42,'reasons_5_static',''),(492,42,'_reasons_5_static','field_5ffca9f36c9c1'),(493,42,'reasons_5_animate','0'),(494,42,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(495,42,'reasons_5_background_color','lightgray2'),(496,42,'_reasons_5_background_color','field_5ffca2087dcc0'),(497,42,'reasons_5_background_image',''),(498,42,'_reasons_5_background_image','field_5ffca965f8d44'),(499,42,'reasons_6_text','Reason'),(500,42,'_reasons_6_text','field_5ffca05ea140c'),(501,42,'reasons_6_number','1'),(502,42,'_reasons_6_number','field_5ffca0a9a140d'),(503,42,'reasons_6_title',''),(504,42,'_reasons_6_title','field_5ffca1c17dcbd'),(505,42,'reasons_6_content',''),(506,42,'_reasons_6_content','field_5ffca1d37dcbe'),(507,42,'reasons_6_static',''),(508,42,'_reasons_6_static','field_5ffca9f36c9c1'),(509,42,'reasons_6_animate','0'),(510,42,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(511,42,'reasons_6_background_color','lightgray2'),(512,42,'_reasons_6_background_color','field_5ffca2087dcc0'),(513,42,'reasons_6_background_image',''),(514,42,'_reasons_6_background_image','field_5ffca965f8d44'),(515,42,'reasons_7_text','Reason'),(516,42,'_reasons_7_text','field_5ffca05ea140c'),(517,42,'reasons_7_number','1'),(518,42,'_reasons_7_number','field_5ffca0a9a140d'),(519,42,'reasons_7_title',''),(520,42,'_reasons_7_title','field_5ffca1c17dcbd'),(521,42,'reasons_7_content',''),(522,42,'_reasons_7_content','field_5ffca1d37dcbe'),(523,42,'reasons_7_static',''),(524,42,'_reasons_7_static','field_5ffca9f36c9c1'),(525,42,'reasons_7_animate','0'),(526,42,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(527,42,'reasons_7_background_color','lightgray2'),(528,42,'_reasons_7_background_color','field_5ffca2087dcc0'),(529,42,'reasons_7_background_image',''),(530,42,'_reasons_7_background_image','field_5ffca965f8d44'),(531,42,'reasons_8_text','Reason'),(532,42,'_reasons_8_text','field_5ffca05ea140c'),(533,42,'reasons_8_number','1'),(534,42,'_reasons_8_number','field_5ffca0a9a140d'),(535,42,'reasons_8_title',''),(536,42,'_reasons_8_title','field_5ffca1c17dcbd'),(537,42,'reasons_8_content',''),(538,42,'_reasons_8_content','field_5ffca1d37dcbe'),(539,42,'reasons_8_static',''),(540,42,'_reasons_8_static','field_5ffca9f36c9c1'),(541,42,'reasons_8_animate','0'),(542,42,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(543,42,'reasons_8_background_color','lightgray2'),(544,42,'_reasons_8_background_color','field_5ffca2087dcc0'),(545,42,'reasons_8_background_image',''),(546,42,'_reasons_8_background_image','field_5ffca965f8d44'),(547,42,'reasons_9_text','Reason'),(548,42,'_reasons_9_text','field_5ffca05ea140c'),(549,42,'reasons_9_number','1'),(550,42,'_reasons_9_number','field_5ffca0a9a140d'),(551,42,'reasons_9_title',''),(552,42,'_reasons_9_title','field_5ffca1c17dcbd'),(553,42,'reasons_9_content',''),(554,42,'_reasons_9_content','field_5ffca1d37dcbe'),(555,42,'reasons_9_static',''),(556,42,'_reasons_9_static','field_5ffca9f36c9c1'),(557,42,'reasons_9_animate','0'),(558,42,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(559,42,'reasons_9_background_color','lightgray2'),(560,42,'_reasons_9_background_color','field_5ffca2087dcc0'),(561,42,'reasons_9_background_image',''),(562,42,'_reasons_9_background_image','field_5ffca965f8d44'),(563,42,'reasons','10'),(564,42,'_reasons','field_5ffc9fa9a140a'),(565,43,'title_gold','One Academy'),(566,43,'_title_gold','field_5ffc850fff400'),(567,43,'title_white','Virtual'),(568,43,'_title_white','field_5ffc8523ff401'),(569,43,'value','25'),(570,43,'_value','field_5ffc87023f4a1'),(571,43,'text_banner','1-Week Unlimited Virtual Classes'),(572,43,'_text_banner','field_5ffc87313f4a2'),(573,43,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(574,43,'_link_button','field_5ffc87543f4a3'),(575,43,'text_button_banner','Start Now'),(576,43,'_text_button_banner','field_5ffc87833f4a4'),(577,43,'text_button_scroll_top','Book Now'),(578,43,'_text_button_scroll_top','field_5ffc87983f4a5'),(579,43,'background_banner',''),(580,43,'_background_banner','field_5ffc85ebcc1e9'),(581,43,'static_image',''),(582,43,'_static_image','field_5ffc85fdcc1ea'),(583,43,'animated','1'),(584,43,'_animated','field_5ffc8668cc1eb'),(585,43,'animated_image',''),(586,43,'_animated_image','field_5ffc8683cc1ec'),(587,43,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(588,43,'_title_reasons','field_5ffc9f7220389'),(589,43,'reasons_0_text','Reason'),(590,43,'_reasons_0_text','field_5ffca05ea140c'),(591,43,'reasons_0_number','1'),(592,43,'_reasons_0_number','field_5ffca0a9a140d'),(593,43,'reasons_0_title','Get ready to turn your home into your new gym'),(594,43,'_reasons_0_title','field_5ffca1c17dcbd'),(595,43,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(596,43,'_reasons_0_content','field_5ffca1d37dcbe'),(597,43,'reasons_0_static',''),(598,43,'_reasons_0_static','field_5ffca9f36c9c1'),(599,43,'reasons_0_animate','0'),(600,43,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(601,43,'reasons_0_background_color','lightgray2'),(602,43,'_reasons_0_background_color','field_5ffca2087dcc0'),(603,43,'reasons_0_background_image',''),(604,43,'_reasons_0_background_image','field_5ffca965f8d44'),(605,43,'reasons_1_text','Reason'),(606,43,'_reasons_1_text','field_5ffca05ea140c'),(607,43,'reasons_1_number','1'),(608,43,'_reasons_1_number','field_5ffca0a9a140d'),(609,43,'reasons_1_title',''),(610,43,'_reasons_1_title','field_5ffca1c17dcbd'),(611,43,'reasons_1_content',''),(612,43,'_reasons_1_content','field_5ffca1d37dcbe'),(613,43,'reasons_1_static',''),(614,43,'_reasons_1_static','field_5ffca9f36c9c1'),(615,43,'reasons_1_animate','0'),(616,43,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(617,43,'reasons_1_background_color','lightgray2'),(618,43,'_reasons_1_background_color','field_5ffca2087dcc0'),(619,43,'reasons_1_background_image',''),(620,43,'_reasons_1_background_image','field_5ffca965f8d44'),(621,43,'reasons_2_text','Reason'),(622,43,'_reasons_2_text','field_5ffca05ea140c'),(623,43,'reasons_2_number','1'),(624,43,'_reasons_2_number','field_5ffca0a9a140d'),(625,43,'reasons_2_title',''),(626,43,'_reasons_2_title','field_5ffca1c17dcbd'),(627,43,'reasons_2_content',''),(628,43,'_reasons_2_content','field_5ffca1d37dcbe'),(629,43,'reasons_2_static',''),(630,43,'_reasons_2_static','field_5ffca9f36c9c1'),(631,43,'reasons_2_animate','0'),(632,43,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(633,43,'reasons_2_background_color','lightgray2'),(634,43,'_reasons_2_background_color','field_5ffca2087dcc0'),(635,43,'reasons_2_background_image',''),(636,43,'_reasons_2_background_image','field_5ffca965f8d44'),(637,43,'reasons_3_text','Reason'),(638,43,'_reasons_3_text','field_5ffca05ea140c'),(639,43,'reasons_3_number','1'),(640,43,'_reasons_3_number','field_5ffca0a9a140d'),(641,43,'reasons_3_title',''),(642,43,'_reasons_3_title','field_5ffca1c17dcbd'),(643,43,'reasons_3_content',''),(644,43,'_reasons_3_content','field_5ffca1d37dcbe'),(645,43,'reasons_3_static',''),(646,43,'_reasons_3_static','field_5ffca9f36c9c1'),(647,43,'reasons_3_animate','0'),(648,43,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(649,43,'reasons_3_background_color','lightgray2'),(650,43,'_reasons_3_background_color','field_5ffca2087dcc0'),(651,43,'reasons_3_background_image',''),(652,43,'_reasons_3_background_image','field_5ffca965f8d44'),(653,43,'reasons_4_text','Reason'),(654,43,'_reasons_4_text','field_5ffca05ea140c'),(655,43,'reasons_4_number','1'),(656,43,'_reasons_4_number','field_5ffca0a9a140d'),(657,43,'reasons_4_title',''),(658,43,'_reasons_4_title','field_5ffca1c17dcbd'),(659,43,'reasons_4_content',''),(660,43,'_reasons_4_content','field_5ffca1d37dcbe'),(661,43,'reasons_4_static',''),(662,43,'_reasons_4_static','field_5ffca9f36c9c1'),(663,43,'reasons_4_animate','0'),(664,43,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(665,43,'reasons_4_background_color','lightgray2'),(666,43,'_reasons_4_background_color','field_5ffca2087dcc0'),(667,43,'reasons_4_background_image',''),(668,43,'_reasons_4_background_image','field_5ffca965f8d44'),(669,43,'reasons_5_text','Reason'),(670,43,'_reasons_5_text','field_5ffca05ea140c'),(671,43,'reasons_5_number','1'),(672,43,'_reasons_5_number','field_5ffca0a9a140d'),(673,43,'reasons_5_title',''),(674,43,'_reasons_5_title','field_5ffca1c17dcbd'),(675,43,'reasons_5_content',''),(676,43,'_reasons_5_content','field_5ffca1d37dcbe'),(677,43,'reasons_5_static',''),(678,43,'_reasons_5_static','field_5ffca9f36c9c1'),(679,43,'reasons_5_animate','0'),(680,43,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(681,43,'reasons_5_background_color','lightgray2'),(682,43,'_reasons_5_background_color','field_5ffca2087dcc0'),(683,43,'reasons_5_background_image',''),(684,43,'_reasons_5_background_image','field_5ffca965f8d44'),(685,43,'reasons_6_text','Reason'),(686,43,'_reasons_6_text','field_5ffca05ea140c'),(687,43,'reasons_6_number','1'),(688,43,'_reasons_6_number','field_5ffca0a9a140d'),(689,43,'reasons_6_title',''),(690,43,'_reasons_6_title','field_5ffca1c17dcbd'),(691,43,'reasons_6_content',''),(692,43,'_reasons_6_content','field_5ffca1d37dcbe'),(693,43,'reasons_6_static',''),(694,43,'_reasons_6_static','field_5ffca9f36c9c1'),(695,43,'reasons_6_animate','0'),(696,43,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(697,43,'reasons_6_background_color','lightgray2'),(698,43,'_reasons_6_background_color','field_5ffca2087dcc0'),(699,43,'reasons_6_background_image',''),(700,43,'_reasons_6_background_image','field_5ffca965f8d44'),(701,43,'reasons_7_text','Reason'),(702,43,'_reasons_7_text','field_5ffca05ea140c'),(703,43,'reasons_7_number','1'),(704,43,'_reasons_7_number','field_5ffca0a9a140d'),(705,43,'reasons_7_title',''),(706,43,'_reasons_7_title','field_5ffca1c17dcbd'),(707,43,'reasons_7_content',''),(708,43,'_reasons_7_content','field_5ffca1d37dcbe'),(709,43,'reasons_7_static',''),(710,43,'_reasons_7_static','field_5ffca9f36c9c1'),(711,43,'reasons_7_animate','0'),(712,43,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(713,43,'reasons_7_background_color','lightgray2'),(714,43,'_reasons_7_background_color','field_5ffca2087dcc0'),(715,43,'reasons_7_background_image',''),(716,43,'_reasons_7_background_image','field_5ffca965f8d44'),(717,43,'reasons_8_text','Reason'),(718,43,'_reasons_8_text','field_5ffca05ea140c'),(719,43,'reasons_8_number','1'),(720,43,'_reasons_8_number','field_5ffca0a9a140d'),(721,43,'reasons_8_title',''),(722,43,'_reasons_8_title','field_5ffca1c17dcbd'),(723,43,'reasons_8_content',''),(724,43,'_reasons_8_content','field_5ffca1d37dcbe'),(725,43,'reasons_8_static',''),(726,43,'_reasons_8_static','field_5ffca9f36c9c1'),(727,43,'reasons_8_animate','0'),(728,43,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(729,43,'reasons_8_background_color','lightgray2'),(730,43,'_reasons_8_background_color','field_5ffca2087dcc0'),(731,43,'reasons_8_background_image',''),(732,43,'_reasons_8_background_image','field_5ffca965f8d44'),(733,43,'reasons_9_text','Reason'),(734,43,'_reasons_9_text','field_5ffca05ea140c'),(735,43,'reasons_9_number','1'),(736,43,'_reasons_9_number','field_5ffca0a9a140d'),(737,43,'reasons_9_title',''),(738,43,'_reasons_9_title','field_5ffca1c17dcbd'),(739,43,'reasons_9_content',''),(740,43,'_reasons_9_content','field_5ffca1d37dcbe'),(741,43,'reasons_9_static',''),(742,43,'_reasons_9_static','field_5ffca9f36c9c1'),(743,43,'reasons_9_animate','0'),(744,43,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(745,43,'reasons_9_background_color','lightgray2'),(746,43,'_reasons_9_background_color','field_5ffca2087dcc0'),(747,43,'reasons_9_background_image',''),(748,43,'_reasons_9_background_image','field_5ffca965f8d44'),(749,43,'reasons','10'),(750,43,'_reasons','field_5ffc9fa9a140a'),(751,5,'reasons_1_second_image','59'),(752,5,'_reasons_1_second_image','field_5ffcab35014a4'),(753,5,'reasons_4_second_image','67'),(754,5,'_reasons_4_second_image','field_5ffcab35014a4'),(755,5,'reasons_6_second_image','72'),(756,5,'_reasons_6_second_image','field_5ffcab35014a4'),(757,44,'title_gold','One Academy'),(758,44,'_title_gold','field_5ffc850fff400'),(759,44,'title_white','Virtual'),(760,44,'_title_white','field_5ffc8523ff401'),(761,44,'value','25'),(762,44,'_value','field_5ffc87023f4a1'),(763,44,'text_banner','1-Week Unlimited Virtual Classes'),(764,44,'_text_banner','field_5ffc87313f4a2'),(765,44,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(766,44,'_link_button','field_5ffc87543f4a3'),(767,44,'text_button_banner','Start Now'),(768,44,'_text_button_banner','field_5ffc87833f4a4'),(769,44,'text_button_scroll_top','Book Now'),(770,44,'_text_button_scroll_top','field_5ffc87983f4a5'),(771,44,'background_banner',''),(772,44,'_background_banner','field_5ffc85ebcc1e9'),(773,44,'static_image',''),(774,44,'_static_image','field_5ffc85fdcc1ea'),(775,44,'animated','1'),(776,44,'_animated','field_5ffc8668cc1eb'),(777,44,'animated_image',''),(778,44,'_animated_image','field_5ffc8683cc1ec'),(779,44,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(780,44,'_title_reasons','field_5ffc9f7220389'),(781,44,'reasons_0_text','Reason'),(782,44,'_reasons_0_text','field_5ffca05ea140c'),(783,44,'reasons_0_number','1'),(784,44,'_reasons_0_number','field_5ffca0a9a140d'),(785,44,'reasons_0_title','Get ready to turn your home into your new gym'),(786,44,'_reasons_0_title','field_5ffca1c17dcbd'),(787,44,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(788,44,'_reasons_0_content','field_5ffca1d37dcbe'),(789,44,'reasons_0_static',''),(790,44,'_reasons_0_static','field_5ffca9f36c9c1'),(791,44,'reasons_0_animate','0'),(792,44,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(793,44,'reasons_0_background_color','lightgray2'),(794,44,'_reasons_0_background_color','field_5ffca2087dcc0'),(795,44,'reasons_0_background_image',''),(796,44,'_reasons_0_background_image','field_5ffca965f8d44'),(797,44,'reasons_1_text','Reason'),(798,44,'_reasons_1_text','field_5ffca05ea140c'),(799,44,'reasons_1_number','2'),(800,44,'_reasons_1_number','field_5ffca0a9a140d'),(801,44,'reasons_1_title','Toronto’s best gym'),(802,44,'_reasons_1_title','field_5ffca1c17dcbd'),(803,44,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(804,44,'_reasons_1_content','field_5ffca1d37dcbe'),(805,44,'reasons_1_static',''),(806,44,'_reasons_1_static','field_5ffca9f36c9c1'),(807,44,'reasons_1_animate','0'),(808,44,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(809,44,'reasons_1_background_color','darkgray'),(810,44,'_reasons_1_background_color','field_5ffca2087dcc0'),(811,44,'reasons_1_background_image',''),(812,44,'_reasons_1_background_image','field_5ffca965f8d44'),(813,44,'reasons_2_text','Reason'),(814,44,'_reasons_2_text','field_5ffca05ea140c'),(815,44,'reasons_2_number','3'),(816,44,'_reasons_2_number','field_5ffca0a9a140d'),(817,44,'reasons_2_title',''),(818,44,'_reasons_2_title','field_5ffca1c17dcbd'),(819,44,'reasons_2_content',''),(820,44,'_reasons_2_content','field_5ffca1d37dcbe'),(821,44,'reasons_2_static',''),(822,44,'_reasons_2_static','field_5ffca9f36c9c1'),(823,44,'reasons_2_animate','0'),(824,44,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(825,44,'reasons_2_background_color','lightgray2'),(826,44,'_reasons_2_background_color','field_5ffca2087dcc0'),(827,44,'reasons_2_background_image',''),(828,44,'_reasons_2_background_image','field_5ffca965f8d44'),(829,44,'reasons_3_text','Reason'),(830,44,'_reasons_3_text','field_5ffca05ea140c'),(831,44,'reasons_3_number','4'),(832,44,'_reasons_3_number','field_5ffca0a9a140d'),(833,44,'reasons_3_title',''),(834,44,'_reasons_3_title','field_5ffca1c17dcbd'),(835,44,'reasons_3_content',''),(836,44,'_reasons_3_content','field_5ffca1d37dcbe'),(837,44,'reasons_3_static',''),(838,44,'_reasons_3_static','field_5ffca9f36c9c1'),(839,44,'reasons_3_animate','0'),(840,44,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(841,44,'reasons_3_background_color','lightgray2'),(842,44,'_reasons_3_background_color','field_5ffca2087dcc0'),(843,44,'reasons_3_background_image',''),(844,44,'_reasons_3_background_image','field_5ffca965f8d44'),(845,44,'reasons_4_text','Reason'),(846,44,'_reasons_4_text','field_5ffca05ea140c'),(847,44,'reasons_4_number','5'),(848,44,'_reasons_4_number','field_5ffca0a9a140d'),(849,44,'reasons_4_title',''),(850,44,'_reasons_4_title','field_5ffca1c17dcbd'),(851,44,'reasons_4_content',''),(852,44,'_reasons_4_content','field_5ffca1d37dcbe'),(853,44,'reasons_4_static',''),(854,44,'_reasons_4_static','field_5ffca9f36c9c1'),(855,44,'reasons_4_animate','0'),(856,44,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(857,44,'reasons_4_background_color','lightgray2'),(858,44,'_reasons_4_background_color','field_5ffca2087dcc0'),(859,44,'reasons_4_background_image',''),(860,44,'_reasons_4_background_image','field_5ffca965f8d44'),(861,44,'reasons_5_text','Reason'),(862,44,'_reasons_5_text','field_5ffca05ea140c'),(863,44,'reasons_5_number','6'),(864,44,'_reasons_5_number','field_5ffca0a9a140d'),(865,44,'reasons_5_title',''),(866,44,'_reasons_5_title','field_5ffca1c17dcbd'),(867,44,'reasons_5_content',''),(868,44,'_reasons_5_content','field_5ffca1d37dcbe'),(869,44,'reasons_5_static',''),(870,44,'_reasons_5_static','field_5ffca9f36c9c1'),(871,44,'reasons_5_animate','0'),(872,44,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(873,44,'reasons_5_background_color','lightgray2'),(874,44,'_reasons_5_background_color','field_5ffca2087dcc0'),(875,44,'reasons_5_background_image',''),(876,44,'_reasons_5_background_image','field_5ffca965f8d44'),(877,44,'reasons_6_text','Reason'),(878,44,'_reasons_6_text','field_5ffca05ea140c'),(879,44,'reasons_6_number','7'),(880,44,'_reasons_6_number','field_5ffca0a9a140d'),(881,44,'reasons_6_title',''),(882,44,'_reasons_6_title','field_5ffca1c17dcbd'),(883,44,'reasons_6_content',''),(884,44,'_reasons_6_content','field_5ffca1d37dcbe'),(885,44,'reasons_6_static',''),(886,44,'_reasons_6_static','field_5ffca9f36c9c1'),(887,44,'reasons_6_animate','0'),(888,44,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(889,44,'reasons_6_background_color','lightgray2'),(890,44,'_reasons_6_background_color','field_5ffca2087dcc0'),(891,44,'reasons_6_background_image',''),(892,44,'_reasons_6_background_image','field_5ffca965f8d44'),(893,44,'reasons_7_text','Reason'),(894,44,'_reasons_7_text','field_5ffca05ea140c'),(895,44,'reasons_7_number','8'),(896,44,'_reasons_7_number','field_5ffca0a9a140d'),(897,44,'reasons_7_title',''),(898,44,'_reasons_7_title','field_5ffca1c17dcbd'),(899,44,'reasons_7_content',''),(900,44,'_reasons_7_content','field_5ffca1d37dcbe'),(901,44,'reasons_7_static',''),(902,44,'_reasons_7_static','field_5ffca9f36c9c1'),(903,44,'reasons_7_animate','0'),(904,44,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(905,44,'reasons_7_background_color','lightgray2'),(906,44,'_reasons_7_background_color','field_5ffca2087dcc0'),(907,44,'reasons_7_background_image',''),(908,44,'_reasons_7_background_image','field_5ffca965f8d44'),(909,44,'reasons_8_text','Reason'),(910,44,'_reasons_8_text','field_5ffca05ea140c'),(911,44,'reasons_8_number','9'),(912,44,'_reasons_8_number','field_5ffca0a9a140d'),(913,44,'reasons_8_title',''),(914,44,'_reasons_8_title','field_5ffca1c17dcbd'),(915,44,'reasons_8_content',''),(916,44,'_reasons_8_content','field_5ffca1d37dcbe'),(917,44,'reasons_8_static',''),(918,44,'_reasons_8_static','field_5ffca9f36c9c1'),(919,44,'reasons_8_animate','0'),(920,44,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(921,44,'reasons_8_background_color','lightgray2'),(922,44,'_reasons_8_background_color','field_5ffca2087dcc0'),(923,44,'reasons_8_background_image',''),(924,44,'_reasons_8_background_image','field_5ffca965f8d44'),(925,44,'reasons_9_text','Reason'),(926,44,'_reasons_9_text','field_5ffca05ea140c'),(927,44,'reasons_9_number','10'),(928,44,'_reasons_9_number','field_5ffca0a9a140d'),(929,44,'reasons_9_title',''),(930,44,'_reasons_9_title','field_5ffca1c17dcbd'),(931,44,'reasons_9_content',''),(932,44,'_reasons_9_content','field_5ffca1d37dcbe'),(933,44,'reasons_9_static',''),(934,44,'_reasons_9_static','field_5ffca9f36c9c1'),(935,44,'reasons_9_animate','0'),(936,44,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(937,44,'reasons_9_background_color','lightgray2'),(938,44,'_reasons_9_background_color','field_5ffca2087dcc0'),(939,44,'reasons_9_background_image',''),(940,44,'_reasons_9_background_image','field_5ffca965f8d44'),(941,44,'reasons','10'),(942,44,'_reasons','field_5ffc9fa9a140a'),(943,44,'reasons_1_second_image',''),(944,44,'_reasons_1_second_image','field_5ffcab35014a4'),(945,44,'reasons_4_second_image',''),(946,44,'_reasons_4_second_image','field_5ffcab35014a4'),(947,44,'reasons_6_second_image',''),(948,44,'_reasons_6_second_image','field_5ffcab35014a4'),(949,45,'title_gold','One Academy'),(950,45,'_title_gold','field_5ffc850fff400'),(951,45,'title_white','Virtual'),(952,45,'_title_white','field_5ffc8523ff401'),(953,45,'value','25'),(954,45,'_value','field_5ffc87023f4a1'),(955,45,'text_banner','1-Week Unlimited Virtual Classes'),(956,45,'_text_banner','field_5ffc87313f4a2'),(957,45,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(958,45,'_link_button','field_5ffc87543f4a3'),(959,45,'text_button_banner','Start Now'),(960,45,'_text_button_banner','field_5ffc87833f4a4'),(961,45,'text_button_scroll_top','Book Now'),(962,45,'_text_button_scroll_top','field_5ffc87983f4a5'),(963,45,'background_banner',''),(964,45,'_background_banner','field_5ffc85ebcc1e9'),(965,45,'static_image',''),(966,45,'_static_image','field_5ffc85fdcc1ea'),(967,45,'animated','1'),(968,45,'_animated','field_5ffc8668cc1eb'),(969,45,'animated_image',''),(970,45,'_animated_image','field_5ffc8683cc1ec'),(971,45,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(972,45,'_title_reasons','field_5ffc9f7220389'),(973,45,'reasons_0_text','Reason'),(974,45,'_reasons_0_text','field_5ffca05ea140c'),(975,45,'reasons_0_number','1'),(976,45,'_reasons_0_number','field_5ffca0a9a140d'),(977,45,'reasons_0_title','Get ready to turn your home into your new gym'),(978,45,'_reasons_0_title','field_5ffca1c17dcbd'),(979,45,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(980,45,'_reasons_0_content','field_5ffca1d37dcbe'),(981,45,'reasons_0_static',''),(982,45,'_reasons_0_static','field_5ffca9f36c9c1'),(983,45,'reasons_0_animate','0'),(984,45,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(985,45,'reasons_0_background_color','lightgray2'),(986,45,'_reasons_0_background_color','field_5ffca2087dcc0'),(987,45,'reasons_0_background_image',''),(988,45,'_reasons_0_background_image','field_5ffca965f8d44'),(989,45,'reasons_1_text','Reason'),(990,45,'_reasons_1_text','field_5ffca05ea140c'),(991,45,'reasons_1_number','2'),(992,45,'_reasons_1_number','field_5ffca0a9a140d'),(993,45,'reasons_1_title','Toronto’s best gym'),(994,45,'_reasons_1_title','field_5ffca1c17dcbd'),(995,45,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(996,45,'_reasons_1_content','field_5ffca1d37dcbe'),(997,45,'reasons_1_static',''),(998,45,'_reasons_1_static','field_5ffca9f36c9c1'),(999,45,'reasons_1_animate','0'),(1000,45,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1001,45,'reasons_1_background_color','darkgray'),(1002,45,'_reasons_1_background_color','field_5ffca2087dcc0'),(1003,45,'reasons_1_background_image',''),(1004,45,'_reasons_1_background_image','field_5ffca965f8d44'),(1005,45,'reasons_2_text','Reason'),(1006,45,'_reasons_2_text','field_5ffca05ea140c'),(1007,45,'reasons_2_number','3'),(1008,45,'_reasons_2_number','field_5ffca0a9a140d'),(1009,45,'reasons_2_title','Virtual classes with live coaches'),(1010,45,'_reasons_2_title','field_5ffca1c17dcbd'),(1011,45,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1012,45,'_reasons_2_content','field_5ffca1d37dcbe'),(1013,45,'reasons_2_static',''),(1014,45,'_reasons_2_static','field_5ffca9f36c9c1'),(1015,45,'reasons_2_animate','0'),(1016,45,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1017,45,'reasons_2_background_color','lightgray2'),(1018,45,'_reasons_2_background_color','field_5ffca2087dcc0'),(1019,45,'reasons_2_background_image',''),(1020,45,'_reasons_2_background_image','field_5ffca965f8d44'),(1021,45,'reasons_3_text','Reason'),(1022,45,'_reasons_3_text','field_5ffca05ea140c'),(1023,45,'reasons_3_number','4'),(1024,45,'_reasons_3_number','field_5ffca0a9a140d'),(1025,45,'reasons_3_title','One community'),(1026,45,'_reasons_3_title','field_5ffca1c17dcbd'),(1027,45,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(1028,45,'_reasons_3_content','field_5ffca1d37dcbe'),(1029,45,'reasons_3_static',''),(1030,45,'_reasons_3_static','field_5ffca9f36c9c1'),(1031,45,'reasons_3_animate','0'),(1032,45,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(1033,45,'reasons_3_background_color','lightgray2'),(1034,45,'_reasons_3_background_color','field_5ffca2087dcc0'),(1035,45,'reasons_3_background_image',''),(1036,45,'_reasons_3_background_image','field_5ffca965f8d44'),(1037,45,'reasons_4_text','Reason'),(1038,45,'_reasons_4_text','field_5ffca05ea140c'),(1039,45,'reasons_4_number','5'),(1040,45,'_reasons_4_number','field_5ffca0a9a140d'),(1041,45,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(1042,45,'_reasons_4_title','field_5ffca1c17dcbd'),(1043,45,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(1044,45,'_reasons_4_content','field_5ffca1d37dcbe'),(1045,45,'reasons_4_static',''),(1046,45,'_reasons_4_static','field_5ffca9f36c9c1'),(1047,45,'reasons_4_animate','0'),(1048,45,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(1049,45,'reasons_4_background_color','lightgray2'),(1050,45,'_reasons_4_background_color','field_5ffca2087dcc0'),(1051,45,'reasons_4_background_image',''),(1052,45,'_reasons_4_background_image','field_5ffca965f8d44'),(1053,45,'reasons_5_text','Reason'),(1054,45,'_reasons_5_text','field_5ffca05ea140c'),(1055,45,'reasons_5_number','6'),(1056,45,'_reasons_5_number','field_5ffca0a9a140d'),(1057,45,'reasons_5_title','More members means you pay less'),(1058,45,'_reasons_5_title','field_5ffca1c17dcbd'),(1059,45,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(1060,45,'_reasons_5_content','field_5ffca1d37dcbe'),(1061,45,'reasons_5_static',''),(1062,45,'_reasons_5_static','field_5ffca9f36c9c1'),(1063,45,'reasons_5_animate','0'),(1064,45,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(1065,45,'reasons_5_background_color','lightgray2'),(1066,45,'_reasons_5_background_color','field_5ffca2087dcc0'),(1067,45,'reasons_5_background_image',''),(1068,45,'_reasons_5_background_image','field_5ffca965f8d44'),(1069,45,'reasons_6_text','Reason'),(1070,45,'_reasons_6_text','field_5ffca05ea140c'),(1071,45,'reasons_6_number','7'),(1072,45,'_reasons_6_number','field_5ffca0a9a140d'),(1073,45,'reasons_6_title','Break your routine'),(1074,45,'_reasons_6_title','field_5ffca1c17dcbd'),(1075,45,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(1076,45,'_reasons_6_content','field_5ffca1d37dcbe'),(1077,45,'reasons_6_static',''),(1078,45,'_reasons_6_static','field_5ffca9f36c9c1'),(1079,45,'reasons_6_animate','0'),(1080,45,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(1081,45,'reasons_6_background_color','lightgray2'),(1082,45,'_reasons_6_background_color','field_5ffca2087dcc0'),(1083,45,'reasons_6_background_image',''),(1084,45,'_reasons_6_background_image','field_5ffca965f8d44'),(1085,45,'reasons_7_text','Reason'),(1086,45,'_reasons_7_text','field_5ffca05ea140c'),(1087,45,'reasons_7_number','8'),(1088,45,'_reasons_7_number','field_5ffca0a9a140d'),(1089,45,'reasons_7_title','Your pace, your training'),(1090,45,'_reasons_7_title','field_5ffca1c17dcbd'),(1091,45,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(1092,45,'_reasons_7_content','field_5ffca1d37dcbe'),(1093,45,'reasons_7_static',''),(1094,45,'_reasons_7_static','field_5ffca9f36c9c1'),(1095,45,'reasons_7_animate','0'),(1096,45,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(1097,45,'reasons_7_background_color','lightgray2'),(1098,45,'_reasons_7_background_color','field_5ffca2087dcc0'),(1099,45,'reasons_7_background_image',''),(1100,45,'_reasons_7_background_image','field_5ffca965f8d44'),(1101,45,'reasons_8_text','Reason'),(1102,45,'_reasons_8_text','field_5ffca05ea140c'),(1103,45,'reasons_8_number','9'),(1104,45,'_reasons_8_number','field_5ffca0a9a140d'),(1105,45,'reasons_8_title','Expertly crafted workouts'),(1106,45,'_reasons_8_title','field_5ffca1c17dcbd'),(1107,45,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(1108,45,'_reasons_8_content','field_5ffca1d37dcbe'),(1109,45,'reasons_8_static',''),(1110,45,'_reasons_8_static','field_5ffca9f36c9c1'),(1111,45,'reasons_8_animate','0'),(1112,45,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(1113,45,'reasons_8_background_color','lightgray2'),(1114,45,'_reasons_8_background_color','field_5ffca2087dcc0'),(1115,45,'reasons_8_background_image',''),(1116,45,'_reasons_8_background_image','field_5ffca965f8d44'),(1117,45,'reasons_9_text','Reason'),(1118,45,'_reasons_9_text','field_5ffca05ea140c'),(1119,45,'reasons_9_number','10'),(1120,45,'_reasons_9_number','field_5ffca0a9a140d'),(1121,45,'reasons_9_title','Convenient class times'),(1122,45,'_reasons_9_title','field_5ffca1c17dcbd'),(1123,45,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(1124,45,'_reasons_9_content','field_5ffca1d37dcbe'),(1125,45,'reasons_9_static',''),(1126,45,'_reasons_9_static','field_5ffca9f36c9c1'),(1127,45,'reasons_9_animate','0'),(1128,45,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(1129,45,'reasons_9_background_color','lightgray2'),(1130,45,'_reasons_9_background_color','field_5ffca2087dcc0'),(1131,45,'reasons_9_background_image',''),(1132,45,'_reasons_9_background_image','field_5ffca965f8d44'),(1133,45,'reasons','10'),(1134,45,'_reasons','field_5ffc9fa9a140a'),(1135,45,'reasons_1_second_image',''),(1136,45,'_reasons_1_second_image','field_5ffcab35014a4'),(1137,45,'reasons_4_second_image',''),(1138,45,'_reasons_4_second_image','field_5ffcab35014a4'),(1139,45,'reasons_6_second_image',''),(1140,45,'_reasons_6_second_image','field_5ffcab35014a4'),(1141,46,'title_gold','One Academy'),(1142,46,'_title_gold','field_5ffc850fff400'),(1143,46,'title_white','Virtual'),(1144,46,'_title_white','field_5ffc8523ff401'),(1145,46,'value','25'),(1146,46,'_value','field_5ffc87023f4a1'),(1147,46,'text_banner','1-Week Unlimited Virtual Classes'),(1148,46,'_text_banner','field_5ffc87313f4a2'),(1149,46,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(1150,46,'_link_button','field_5ffc87543f4a3'),(1151,46,'text_button_banner','Start Now'),(1152,46,'_text_button_banner','field_5ffc87833f4a4'),(1153,46,'text_button_scroll_top','Book Now'),(1154,46,'_text_button_scroll_top','field_5ffc87983f4a5'),(1155,46,'background_banner',''),(1156,46,'_background_banner','field_5ffc85ebcc1e9'),(1157,46,'static_image',''),(1158,46,'_static_image','field_5ffc85fdcc1ea'),(1159,46,'animated','1'),(1160,46,'_animated','field_5ffc8668cc1eb'),(1161,46,'animated_image',''),(1162,46,'_animated_image','field_5ffc8683cc1ec'),(1163,46,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(1164,46,'_title_reasons','field_5ffc9f7220389'),(1165,46,'reasons_0_text','Reason'),(1166,46,'_reasons_0_text','field_5ffca05ea140c'),(1167,46,'reasons_0_number','1'),(1168,46,'_reasons_0_number','field_5ffca0a9a140d'),(1169,46,'reasons_0_title','Get ready to turn your home into your new gym'),(1170,46,'_reasons_0_title','field_5ffca1c17dcbd'),(1171,46,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(1172,46,'_reasons_0_content','field_5ffca1d37dcbe'),(1173,46,'reasons_0_static',''),(1174,46,'_reasons_0_static','field_5ffca9f36c9c1'),(1175,46,'reasons_0_animate','0'),(1176,46,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(1177,46,'reasons_0_background_color','lightgray2'),(1178,46,'_reasons_0_background_color','field_5ffca2087dcc0'),(1179,46,'reasons_0_background_image',''),(1180,46,'_reasons_0_background_image','field_5ffca965f8d44'),(1181,46,'reasons_1_text','Reason'),(1182,46,'_reasons_1_text','field_5ffca05ea140c'),(1183,46,'reasons_1_number','2'),(1184,46,'_reasons_1_number','field_5ffca0a9a140d'),(1185,46,'reasons_1_title','Toronto’s best gym'),(1186,46,'_reasons_1_title','field_5ffca1c17dcbd'),(1187,46,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(1188,46,'_reasons_1_content','field_5ffca1d37dcbe'),(1189,46,'reasons_1_static',''),(1190,46,'_reasons_1_static','field_5ffca9f36c9c1'),(1191,46,'reasons_1_animate','0'),(1192,46,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1193,46,'reasons_1_background_color','darkgray'),(1194,46,'_reasons_1_background_color','field_5ffca2087dcc0'),(1195,46,'reasons_1_background_image',''),(1196,46,'_reasons_1_background_image','field_5ffca965f8d44'),(1197,46,'reasons_2_text','Reason'),(1198,46,'_reasons_2_text','field_5ffca05ea140c'),(1199,46,'reasons_2_number','3'),(1200,46,'_reasons_2_number','field_5ffca0a9a140d'),(1201,46,'reasons_2_title','Virtual classes with live coaches'),(1202,46,'_reasons_2_title','field_5ffca1c17dcbd'),(1203,46,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1204,46,'_reasons_2_content','field_5ffca1d37dcbe'),(1205,46,'reasons_2_static',''),(1206,46,'_reasons_2_static','field_5ffca9f36c9c1'),(1207,46,'reasons_2_animate','0'),(1208,46,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1209,46,'reasons_2_background_color','white'),(1210,46,'_reasons_2_background_color','field_5ffca2087dcc0'),(1211,46,'reasons_2_background_image',''),(1212,46,'_reasons_2_background_image','field_5ffca965f8d44'),(1213,46,'reasons_3_text','Reason'),(1214,46,'_reasons_3_text','field_5ffca05ea140c'),(1215,46,'reasons_3_number','4'),(1216,46,'_reasons_3_number','field_5ffca0a9a140d'),(1217,46,'reasons_3_title','One community'),(1218,46,'_reasons_3_title','field_5ffca1c17dcbd'),(1219,46,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(1220,46,'_reasons_3_content','field_5ffca1d37dcbe'),(1221,46,'reasons_3_static',''),(1222,46,'_reasons_3_static','field_5ffca9f36c9c1'),(1223,46,'reasons_3_animate','0'),(1224,46,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(1225,46,'reasons_3_background_color','darkgray'),(1226,46,'_reasons_3_background_color','field_5ffca2087dcc0'),(1227,46,'reasons_3_background_image',''),(1228,46,'_reasons_3_background_image','field_5ffca965f8d44'),(1229,46,'reasons_4_text','Reason'),(1230,46,'_reasons_4_text','field_5ffca05ea140c'),(1231,46,'reasons_4_number','5'),(1232,46,'_reasons_4_number','field_5ffca0a9a140d'),(1233,46,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(1234,46,'_reasons_4_title','field_5ffca1c17dcbd'),(1235,46,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(1236,46,'_reasons_4_content','field_5ffca1d37dcbe'),(1237,46,'reasons_4_static',''),(1238,46,'_reasons_4_static','field_5ffca9f36c9c1'),(1239,46,'reasons_4_animate','0'),(1240,46,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(1241,46,'reasons_4_background_color','lightgray2'),(1242,46,'_reasons_4_background_color','field_5ffca2087dcc0'),(1243,46,'reasons_4_background_image',''),(1244,46,'_reasons_4_background_image','field_5ffca965f8d44'),(1245,46,'reasons_5_text','Reason'),(1246,46,'_reasons_5_text','field_5ffca05ea140c'),(1247,46,'reasons_5_number','6'),(1248,46,'_reasons_5_number','field_5ffca0a9a140d'),(1249,46,'reasons_5_title','More members means you pay less'),(1250,46,'_reasons_5_title','field_5ffca1c17dcbd'),(1251,46,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(1252,46,'_reasons_5_content','field_5ffca1d37dcbe'),(1253,46,'reasons_5_static',''),(1254,46,'_reasons_5_static','field_5ffca9f36c9c1'),(1255,46,'reasons_5_animate','0'),(1256,46,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(1257,46,'reasons_5_background_color','lightgray2'),(1258,46,'_reasons_5_background_color','field_5ffca2087dcc0'),(1259,46,'reasons_5_background_image',''),(1260,46,'_reasons_5_background_image','field_5ffca965f8d44'),(1261,46,'reasons_6_text','Reason'),(1262,46,'_reasons_6_text','field_5ffca05ea140c'),(1263,46,'reasons_6_number','7'),(1264,46,'_reasons_6_number','field_5ffca0a9a140d'),(1265,46,'reasons_6_title','Break your routine'),(1266,46,'_reasons_6_title','field_5ffca1c17dcbd'),(1267,46,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(1268,46,'_reasons_6_content','field_5ffca1d37dcbe'),(1269,46,'reasons_6_static',''),(1270,46,'_reasons_6_static','field_5ffca9f36c9c1'),(1271,46,'reasons_6_animate','0'),(1272,46,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(1273,46,'reasons_6_background_color','darkgray'),(1274,46,'_reasons_6_background_color','field_5ffca2087dcc0'),(1275,46,'reasons_6_background_image',''),(1276,46,'_reasons_6_background_image','field_5ffca965f8d44'),(1277,46,'reasons_7_text','Reason'),(1278,46,'_reasons_7_text','field_5ffca05ea140c'),(1279,46,'reasons_7_number','8'),(1280,46,'_reasons_7_number','field_5ffca0a9a140d'),(1281,46,'reasons_7_title','Your pace, your training'),(1282,46,'_reasons_7_title','field_5ffca1c17dcbd'),(1283,46,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(1284,46,'_reasons_7_content','field_5ffca1d37dcbe'),(1285,46,'reasons_7_static',''),(1286,46,'_reasons_7_static','field_5ffca9f36c9c1'),(1287,46,'reasons_7_animate','0'),(1288,46,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(1289,46,'reasons_7_background_color','white'),(1290,46,'_reasons_7_background_color','field_5ffca2087dcc0'),(1291,46,'reasons_7_background_image',''),(1292,46,'_reasons_7_background_image','field_5ffca965f8d44'),(1293,46,'reasons_8_text','Reason'),(1294,46,'_reasons_8_text','field_5ffca05ea140c'),(1295,46,'reasons_8_number','9'),(1296,46,'_reasons_8_number','field_5ffca0a9a140d'),(1297,46,'reasons_8_title','Expertly crafted workouts'),(1298,46,'_reasons_8_title','field_5ffca1c17dcbd'),(1299,46,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(1300,46,'_reasons_8_content','field_5ffca1d37dcbe'),(1301,46,'reasons_8_static',''),(1302,46,'_reasons_8_static','field_5ffca9f36c9c1'),(1303,46,'reasons_8_animate','0'),(1304,46,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(1305,46,'reasons_8_background_color','lightgray3'),(1306,46,'_reasons_8_background_color','field_5ffca2087dcc0'),(1307,46,'reasons_8_background_image',''),(1308,46,'_reasons_8_background_image','field_5ffca965f8d44'),(1309,46,'reasons_9_text','Reason'),(1310,46,'_reasons_9_text','field_5ffca05ea140c'),(1311,46,'reasons_9_number','10'),(1312,46,'_reasons_9_number','field_5ffca0a9a140d'),(1313,46,'reasons_9_title','Convenient class times'),(1314,46,'_reasons_9_title','field_5ffca1c17dcbd'),(1315,46,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(1316,46,'_reasons_9_content','field_5ffca1d37dcbe'),(1317,46,'reasons_9_static',''),(1318,46,'_reasons_9_static','field_5ffca9f36c9c1'),(1319,46,'reasons_9_animate','0'),(1320,46,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(1321,46,'reasons_9_background_color','darkgray'),(1322,46,'_reasons_9_background_color','field_5ffca2087dcc0'),(1323,46,'reasons_9_background_image',''),(1324,46,'_reasons_9_background_image','field_5ffca965f8d44'),(1325,46,'reasons','10'),(1326,46,'_reasons','field_5ffc9fa9a140a'),(1327,46,'reasons_1_second_image',''),(1328,46,'_reasons_1_second_image','field_5ffcab35014a4'),(1329,46,'reasons_4_second_image',''),(1330,46,'_reasons_4_second_image','field_5ffcab35014a4'),(1331,46,'reasons_6_second_image',''),(1332,46,'_reasons_6_second_image','field_5ffcab35014a4'),(1339,2,'_edit_lock','1610454621:1'),(1344,52,'_wp_attached_file','2021/01/womanbanner-mobile.png'),(1345,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1577;s:6:\"height\";i:743;s:4:\"file\";s:30:\"2021/01/womanbanner-mobile.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1024x482.png\";s:5:\"width\";i:1024;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-768x362.png\";s:5:\"width\";i:768;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1536x724.png\";s:5:\"width\";i:1536;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-880x743.png\";s:5:\"width\";i:880;s:6:\"height\";i:743;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1346,53,'title_gold','One Academy'),(1347,53,'_title_gold','field_5ffc850fff400'),(1348,53,'title_white','Virtual'),(1349,53,'_title_white','field_5ffc8523ff401'),(1350,53,'value','25'),(1351,53,'_value','field_5ffc87023f4a1'),(1352,53,'text_banner','1-Week Unlimited Virtual Classes'),(1353,53,'_text_banner','field_5ffc87313f4a2'),(1354,53,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(1355,53,'_link_button','field_5ffc87543f4a3'),(1356,53,'text_button_banner','Start Now'),(1357,53,'_text_button_banner','field_5ffc87833f4a4'),(1358,53,'text_button_scroll_top','Book Now'),(1359,53,'_text_button_scroll_top','field_5ffc87983f4a5'),(1360,53,'background_banner',''),(1361,53,'_background_banner','field_5ffc85ebcc1e9'),(1362,53,'static_image','52'),(1363,53,'_static_image','field_5ffc85fdcc1ea'),(1364,53,'animated','1'),(1365,53,'_animated','field_5ffc8668cc1eb'),(1366,53,'animated_image',''),(1367,53,'_animated_image','field_5ffc8683cc1ec'),(1368,53,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(1369,53,'_title_reasons','field_5ffc9f7220389'),(1370,53,'reasons_0_text','Reason'),(1371,53,'_reasons_0_text','field_5ffca05ea140c'),(1372,53,'reasons_0_number','1'),(1373,53,'_reasons_0_number','field_5ffca0a9a140d'),(1374,53,'reasons_0_title','Get ready to turn your home into your new gym'),(1375,53,'_reasons_0_title','field_5ffca1c17dcbd'),(1376,53,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(1377,53,'_reasons_0_content','field_5ffca1d37dcbe'),(1378,53,'reasons_0_static',''),(1379,53,'_reasons_0_static','field_5ffca9f36c9c1'),(1380,53,'reasons_0_animate','0'),(1381,53,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(1382,53,'reasons_0_background_color','lightgray2'),(1383,53,'_reasons_0_background_color','field_5ffca2087dcc0'),(1384,53,'reasons_0_background_image',''),(1385,53,'_reasons_0_background_image','field_5ffca965f8d44'),(1386,53,'reasons_1_text','Reason'),(1387,53,'_reasons_1_text','field_5ffca05ea140c'),(1388,53,'reasons_1_number','2'),(1389,53,'_reasons_1_number','field_5ffca0a9a140d'),(1390,53,'reasons_1_title','Toronto’s best gym'),(1391,53,'_reasons_1_title','field_5ffca1c17dcbd'),(1392,53,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(1393,53,'_reasons_1_content','field_5ffca1d37dcbe'),(1394,53,'reasons_1_static',''),(1395,53,'_reasons_1_static','field_5ffca9f36c9c1'),(1396,53,'reasons_1_animate','0'),(1397,53,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1398,53,'reasons_1_background_color','darkgray'),(1399,53,'_reasons_1_background_color','field_5ffca2087dcc0'),(1400,53,'reasons_1_background_image',''),(1401,53,'_reasons_1_background_image','field_5ffca965f8d44'),(1402,53,'reasons_2_text','Reason'),(1403,53,'_reasons_2_text','field_5ffca05ea140c'),(1404,53,'reasons_2_number','3'),(1405,53,'_reasons_2_number','field_5ffca0a9a140d'),(1406,53,'reasons_2_title','Virtual classes with live coaches'),(1407,53,'_reasons_2_title','field_5ffca1c17dcbd'),(1408,53,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1409,53,'_reasons_2_content','field_5ffca1d37dcbe'),(1410,53,'reasons_2_static',''),(1411,53,'_reasons_2_static','field_5ffca9f36c9c1'),(1412,53,'reasons_2_animate','0'),(1413,53,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1414,53,'reasons_2_background_color','white'),(1415,53,'_reasons_2_background_color','field_5ffca2087dcc0'),(1416,53,'reasons_2_background_image',''),(1417,53,'_reasons_2_background_image','field_5ffca965f8d44'),(1418,53,'reasons_3_text','Reason'),(1419,53,'_reasons_3_text','field_5ffca05ea140c'),(1420,53,'reasons_3_number','4'),(1421,53,'_reasons_3_number','field_5ffca0a9a140d'),(1422,53,'reasons_3_title','One community'),(1423,53,'_reasons_3_title','field_5ffca1c17dcbd'),(1424,53,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(1425,53,'_reasons_3_content','field_5ffca1d37dcbe'),(1426,53,'reasons_3_static',''),(1427,53,'_reasons_3_static','field_5ffca9f36c9c1'),(1428,53,'reasons_3_animate','0'),(1429,53,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(1430,53,'reasons_3_background_color','darkgray'),(1431,53,'_reasons_3_background_color','field_5ffca2087dcc0'),(1432,53,'reasons_3_background_image',''),(1433,53,'_reasons_3_background_image','field_5ffca965f8d44'),(1434,53,'reasons_4_text','Reason'),(1435,53,'_reasons_4_text','field_5ffca05ea140c'),(1436,53,'reasons_4_number','5'),(1437,53,'_reasons_4_number','field_5ffca0a9a140d'),(1438,53,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(1439,53,'_reasons_4_title','field_5ffca1c17dcbd'),(1440,53,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(1441,53,'_reasons_4_content','field_5ffca1d37dcbe'),(1442,53,'reasons_4_static',''),(1443,53,'_reasons_4_static','field_5ffca9f36c9c1'),(1444,53,'reasons_4_animate','0'),(1445,53,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(1446,53,'reasons_4_background_color','lightgray2'),(1447,53,'_reasons_4_background_color','field_5ffca2087dcc0'),(1448,53,'reasons_4_background_image',''),(1449,53,'_reasons_4_background_image','field_5ffca965f8d44'),(1450,53,'reasons_5_text','Reason'),(1451,53,'_reasons_5_text','field_5ffca05ea140c'),(1452,53,'reasons_5_number','6'),(1453,53,'_reasons_5_number','field_5ffca0a9a140d'),(1454,53,'reasons_5_title','More members means you pay less'),(1455,53,'_reasons_5_title','field_5ffca1c17dcbd'),(1456,53,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(1457,53,'_reasons_5_content','field_5ffca1d37dcbe'),(1458,53,'reasons_5_static',''),(1459,53,'_reasons_5_static','field_5ffca9f36c9c1'),(1460,53,'reasons_5_animate','0'),(1461,53,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(1462,53,'reasons_5_background_color','lightgray2'),(1463,53,'_reasons_5_background_color','field_5ffca2087dcc0'),(1464,53,'reasons_5_background_image',''),(1465,53,'_reasons_5_background_image','field_5ffca965f8d44'),(1466,53,'reasons_6_text','Reason'),(1467,53,'_reasons_6_text','field_5ffca05ea140c'),(1468,53,'reasons_6_number','7'),(1469,53,'_reasons_6_number','field_5ffca0a9a140d'),(1470,53,'reasons_6_title','Break your routine'),(1471,53,'_reasons_6_title','field_5ffca1c17dcbd'),(1472,53,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(1473,53,'_reasons_6_content','field_5ffca1d37dcbe'),(1474,53,'reasons_6_static',''),(1475,53,'_reasons_6_static','field_5ffca9f36c9c1'),(1476,53,'reasons_6_animate','0'),(1477,53,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(1478,53,'reasons_6_background_color','darkgray'),(1479,53,'_reasons_6_background_color','field_5ffca2087dcc0'),(1480,53,'reasons_6_background_image',''),(1481,53,'_reasons_6_background_image','field_5ffca965f8d44'),(1482,53,'reasons_7_text','Reason'),(1483,53,'_reasons_7_text','field_5ffca05ea140c'),(1484,53,'reasons_7_number','8'),(1485,53,'_reasons_7_number','field_5ffca0a9a140d'),(1486,53,'reasons_7_title','Your pace, your training'),(1487,53,'_reasons_7_title','field_5ffca1c17dcbd'),(1488,53,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(1489,53,'_reasons_7_content','field_5ffca1d37dcbe'),(1490,53,'reasons_7_static',''),(1491,53,'_reasons_7_static','field_5ffca9f36c9c1'),(1492,53,'reasons_7_animate','0'),(1493,53,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(1494,53,'reasons_7_background_color','white'),(1495,53,'_reasons_7_background_color','field_5ffca2087dcc0'),(1496,53,'reasons_7_background_image',''),(1497,53,'_reasons_7_background_image','field_5ffca965f8d44'),(1498,53,'reasons_8_text','Reason'),(1499,53,'_reasons_8_text','field_5ffca05ea140c'),(1500,53,'reasons_8_number','9'),(1501,53,'_reasons_8_number','field_5ffca0a9a140d'),(1502,53,'reasons_8_title','Expertly crafted workouts'),(1503,53,'_reasons_8_title','field_5ffca1c17dcbd'),(1504,53,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(1505,53,'_reasons_8_content','field_5ffca1d37dcbe'),(1506,53,'reasons_8_static',''),(1507,53,'_reasons_8_static','field_5ffca9f36c9c1'),(1508,53,'reasons_8_animate','0'),(1509,53,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(1510,53,'reasons_8_background_color','lightgray3'),(1511,53,'_reasons_8_background_color','field_5ffca2087dcc0'),(1512,53,'reasons_8_background_image',''),(1513,53,'_reasons_8_background_image','field_5ffca965f8d44'),(1514,53,'reasons_9_text','Reason'),(1515,53,'_reasons_9_text','field_5ffca05ea140c'),(1516,53,'reasons_9_number','10'),(1517,53,'_reasons_9_number','field_5ffca0a9a140d'),(1518,53,'reasons_9_title','Convenient class times'),(1519,53,'_reasons_9_title','field_5ffca1c17dcbd'),(1520,53,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(1521,53,'_reasons_9_content','field_5ffca1d37dcbe'),(1522,53,'reasons_9_static',''),(1523,53,'_reasons_9_static','field_5ffca9f36c9c1'),(1524,53,'reasons_9_animate','0'),(1525,53,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(1526,53,'reasons_9_background_color','darkgray'),(1527,53,'_reasons_9_background_color','field_5ffca2087dcc0'),(1528,53,'reasons_9_background_image',''),(1529,53,'_reasons_9_background_image','field_5ffca965f8d44'),(1530,53,'reasons','10'),(1531,53,'_reasons','field_5ffc9fa9a140a'),(1532,53,'reasons_1_second_image',''),(1533,53,'_reasons_1_second_image','field_5ffcab35014a4'),(1534,53,'reasons_4_second_image',''),(1535,53,'_reasons_4_second_image','field_5ffcab35014a4'),(1536,53,'reasons_6_second_image',''),(1537,53,'_reasons_6_second_image','field_5ffcab35014a4'),(1538,54,'_wp_attached_file','2021/01/reason01.png'),(1539,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:762;s:6:\"height\";i:592;s:4:\"file\";s:20:\"2021/01/reason01.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason01-300x233.png\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason01-762x554.png\";s:5:\"width\";i:762;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1540,55,'title_gold','One Academy'),(1541,55,'_title_gold','field_5ffc850fff400'),(1542,55,'title_white','Virtual'),(1543,55,'_title_white','field_5ffc8523ff401'),(1544,55,'value','25'),(1545,55,'_value','field_5ffc87023f4a1'),(1546,55,'text_banner','1-Week Unlimited Virtual Classes'),(1547,55,'_text_banner','field_5ffc87313f4a2'),(1548,55,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(1549,55,'_link_button','field_5ffc87543f4a3'),(1550,55,'text_button_banner','Start Now'),(1551,55,'_text_button_banner','field_5ffc87833f4a4'),(1552,55,'text_button_scroll_top','Book Now'),(1553,55,'_text_button_scroll_top','field_5ffc87983f4a5'),(1554,55,'background_banner',''),(1555,55,'_background_banner','field_5ffc85ebcc1e9'),(1556,55,'static_image','52'),(1557,55,'_static_image','field_5ffc85fdcc1ea'),(1558,55,'animated','1'),(1559,55,'_animated','field_5ffc8668cc1eb'),(1560,55,'animated_image',''),(1561,55,'_animated_image','field_5ffc8683cc1ec'),(1562,55,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(1563,55,'_title_reasons','field_5ffc9f7220389'),(1564,55,'reasons_0_text','Reason'),(1565,55,'_reasons_0_text','field_5ffca05ea140c'),(1566,55,'reasons_0_number','1'),(1567,55,'_reasons_0_number','field_5ffca0a9a140d'),(1568,55,'reasons_0_title','Get ready to turn your home into your new gym'),(1569,55,'_reasons_0_title','field_5ffca1c17dcbd'),(1570,55,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(1571,55,'_reasons_0_content','field_5ffca1d37dcbe'),(1572,55,'reasons_0_static','54'),(1573,55,'_reasons_0_static','field_5ffca9f36c9c1'),(1574,55,'reasons_0_animate','0'),(1575,55,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(1576,55,'reasons_0_background_color','lightgray2'),(1577,55,'_reasons_0_background_color','field_5ffca2087dcc0'),(1578,55,'reasons_0_background_image',''),(1579,55,'_reasons_0_background_image','field_5ffca965f8d44'),(1580,55,'reasons_1_text','Reason'),(1581,55,'_reasons_1_text','field_5ffca05ea140c'),(1582,55,'reasons_1_number','2'),(1583,55,'_reasons_1_number','field_5ffca0a9a140d'),(1584,55,'reasons_1_title','Toronto’s best gym'),(1585,55,'_reasons_1_title','field_5ffca1c17dcbd'),(1586,55,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(1587,55,'_reasons_1_content','field_5ffca1d37dcbe'),(1588,55,'reasons_1_static',''),(1589,55,'_reasons_1_static','field_5ffca9f36c9c1'),(1590,55,'reasons_1_animate','0'),(1591,55,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1592,55,'reasons_1_background_color','darkgray'),(1593,55,'_reasons_1_background_color','field_5ffca2087dcc0'),(1594,55,'reasons_1_background_image',''),(1595,55,'_reasons_1_background_image','field_5ffca965f8d44'),(1596,55,'reasons_2_text','Reason'),(1597,55,'_reasons_2_text','field_5ffca05ea140c'),(1598,55,'reasons_2_number','3'),(1599,55,'_reasons_2_number','field_5ffca0a9a140d'),(1600,55,'reasons_2_title','Virtual classes with live coaches'),(1601,55,'_reasons_2_title','field_5ffca1c17dcbd'),(1602,55,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1603,55,'_reasons_2_content','field_5ffca1d37dcbe'),(1604,55,'reasons_2_static',''),(1605,55,'_reasons_2_static','field_5ffca9f36c9c1'),(1606,55,'reasons_2_animate','0'),(1607,55,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1608,55,'reasons_2_background_color','white'),(1609,55,'_reasons_2_background_color','field_5ffca2087dcc0'),(1610,55,'reasons_2_background_image',''),(1611,55,'_reasons_2_background_image','field_5ffca965f8d44'),(1612,55,'reasons_3_text','Reason'),(1613,55,'_reasons_3_text','field_5ffca05ea140c'),(1614,55,'reasons_3_number','4'),(1615,55,'_reasons_3_number','field_5ffca0a9a140d'),(1616,55,'reasons_3_title','One community'),(1617,55,'_reasons_3_title','field_5ffca1c17dcbd'),(1618,55,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(1619,55,'_reasons_3_content','field_5ffca1d37dcbe'),(1620,55,'reasons_3_static',''),(1621,55,'_reasons_3_static','field_5ffca9f36c9c1'),(1622,55,'reasons_3_animate','0'),(1623,55,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(1624,55,'reasons_3_background_color','darkgray'),(1625,55,'_reasons_3_background_color','field_5ffca2087dcc0'),(1626,55,'reasons_3_background_image',''),(1627,55,'_reasons_3_background_image','field_5ffca965f8d44'),(1628,55,'reasons_4_text','Reason'),(1629,55,'_reasons_4_text','field_5ffca05ea140c'),(1630,55,'reasons_4_number','5'),(1631,55,'_reasons_4_number','field_5ffca0a9a140d'),(1632,55,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(1633,55,'_reasons_4_title','field_5ffca1c17dcbd'),(1634,55,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(1635,55,'_reasons_4_content','field_5ffca1d37dcbe'),(1636,55,'reasons_4_static',''),(1637,55,'_reasons_4_static','field_5ffca9f36c9c1'),(1638,55,'reasons_4_animate','0'),(1639,55,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(1640,55,'reasons_4_background_color','lightgray2'),(1641,55,'_reasons_4_background_color','field_5ffca2087dcc0'),(1642,55,'reasons_4_background_image',''),(1643,55,'_reasons_4_background_image','field_5ffca965f8d44'),(1644,55,'reasons_5_text','Reason'),(1645,55,'_reasons_5_text','field_5ffca05ea140c'),(1646,55,'reasons_5_number','6'),(1647,55,'_reasons_5_number','field_5ffca0a9a140d'),(1648,55,'reasons_5_title','More members means you pay less'),(1649,55,'_reasons_5_title','field_5ffca1c17dcbd'),(1650,55,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(1651,55,'_reasons_5_content','field_5ffca1d37dcbe'),(1652,55,'reasons_5_static',''),(1653,55,'_reasons_5_static','field_5ffca9f36c9c1'),(1654,55,'reasons_5_animate','0'),(1655,55,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(1656,55,'reasons_5_background_color','lightgray2'),(1657,55,'_reasons_5_background_color','field_5ffca2087dcc0'),(1658,55,'reasons_5_background_image',''),(1659,55,'_reasons_5_background_image','field_5ffca965f8d44'),(1660,55,'reasons_6_text','Reason'),(1661,55,'_reasons_6_text','field_5ffca05ea140c'),(1662,55,'reasons_6_number','7'),(1663,55,'_reasons_6_number','field_5ffca0a9a140d'),(1664,55,'reasons_6_title','Break your routine'),(1665,55,'_reasons_6_title','field_5ffca1c17dcbd'),(1666,55,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(1667,55,'_reasons_6_content','field_5ffca1d37dcbe'),(1668,55,'reasons_6_static',''),(1669,55,'_reasons_6_static','field_5ffca9f36c9c1'),(1670,55,'reasons_6_animate','0'),(1671,55,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(1672,55,'reasons_6_background_color','darkgray'),(1673,55,'_reasons_6_background_color','field_5ffca2087dcc0'),(1674,55,'reasons_6_background_image',''),(1675,55,'_reasons_6_background_image','field_5ffca965f8d44'),(1676,55,'reasons_7_text','Reason'),(1677,55,'_reasons_7_text','field_5ffca05ea140c'),(1678,55,'reasons_7_number','8'),(1679,55,'_reasons_7_number','field_5ffca0a9a140d'),(1680,55,'reasons_7_title','Your pace, your training'),(1681,55,'_reasons_7_title','field_5ffca1c17dcbd'),(1682,55,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(1683,55,'_reasons_7_content','field_5ffca1d37dcbe'),(1684,55,'reasons_7_static',''),(1685,55,'_reasons_7_static','field_5ffca9f36c9c1'),(1686,55,'reasons_7_animate','0'),(1687,55,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(1688,55,'reasons_7_background_color','white'),(1689,55,'_reasons_7_background_color','field_5ffca2087dcc0'),(1690,55,'reasons_7_background_image',''),(1691,55,'_reasons_7_background_image','field_5ffca965f8d44'),(1692,55,'reasons_8_text','Reason'),(1693,55,'_reasons_8_text','field_5ffca05ea140c'),(1694,55,'reasons_8_number','9'),(1695,55,'_reasons_8_number','field_5ffca0a9a140d'),(1696,55,'reasons_8_title','Expertly crafted workouts'),(1697,55,'_reasons_8_title','field_5ffca1c17dcbd'),(1698,55,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(1699,55,'_reasons_8_content','field_5ffca1d37dcbe'),(1700,55,'reasons_8_static',''),(1701,55,'_reasons_8_static','field_5ffca9f36c9c1'),(1702,55,'reasons_8_animate','0'),(1703,55,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(1704,55,'reasons_8_background_color','lightgray3'),(1705,55,'_reasons_8_background_color','field_5ffca2087dcc0'),(1706,55,'reasons_8_background_image',''),(1707,55,'_reasons_8_background_image','field_5ffca965f8d44'),(1708,55,'reasons_9_text','Reason'),(1709,55,'_reasons_9_text','field_5ffca05ea140c'),(1710,55,'reasons_9_number','10'),(1711,55,'_reasons_9_number','field_5ffca0a9a140d'),(1712,55,'reasons_9_title','Convenient class times'),(1713,55,'_reasons_9_title','field_5ffca1c17dcbd'),(1714,55,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(1715,55,'_reasons_9_content','field_5ffca1d37dcbe'),(1716,55,'reasons_9_static',''),(1717,55,'_reasons_9_static','field_5ffca9f36c9c1'),(1718,55,'reasons_9_animate','0'),(1719,55,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(1720,55,'reasons_9_background_color','darkgray'),(1721,55,'_reasons_9_background_color','field_5ffca2087dcc0'),(1722,55,'reasons_9_background_image',''),(1723,55,'_reasons_9_background_image','field_5ffca965f8d44'),(1724,55,'reasons','10'),(1725,55,'_reasons','field_5ffc9fa9a140a'),(1726,55,'reasons_1_second_image',''),(1727,55,'_reasons_1_second_image','field_5ffcab35014a4'),(1728,55,'reasons_4_second_image',''),(1729,55,'_reasons_4_second_image','field_5ffcab35014a4'),(1730,55,'reasons_6_second_image',''),(1731,55,'_reasons_6_second_image','field_5ffcab35014a4'),(1732,56,'_wp_attached_file','2021/01/big-logo.svg'),(1733,56,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:440;s:6:\"height\";i:312;s:4:\"file\";s:21:\"/2021/01/big-logo.svg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"banner-desktop\";a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"big-logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(1734,57,'title_gold','One Academy'),(1735,57,'_title_gold','field_5ffc850fff400'),(1736,57,'title_white','Virtual'),(1737,57,'_title_white','field_5ffc8523ff401'),(1738,57,'value','25'),(1739,57,'_value','field_5ffc87023f4a1'),(1740,57,'text_banner','1-Week Unlimited Virtual Classes'),(1741,57,'_text_banner','field_5ffc87313f4a2'),(1742,57,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(1743,57,'_link_button','field_5ffc87543f4a3'),(1744,57,'text_button_banner','Start Now'),(1745,57,'_text_button_banner','field_5ffc87833f4a4'),(1746,57,'text_button_scroll_top','Book Now'),(1747,57,'_text_button_scroll_top','field_5ffc87983f4a5'),(1748,57,'background_banner',''),(1749,57,'_background_banner','field_5ffc85ebcc1e9'),(1750,57,'static_image','52'),(1751,57,'_static_image','field_5ffc85fdcc1ea'),(1752,57,'animated','1'),(1753,57,'_animated','field_5ffc8668cc1eb'),(1754,57,'animated_image',''),(1755,57,'_animated_image','field_5ffc8683cc1ec'),(1756,57,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(1757,57,'_title_reasons','field_5ffc9f7220389'),(1758,57,'reasons_0_text','Reason'),(1759,57,'_reasons_0_text','field_5ffca05ea140c'),(1760,57,'reasons_0_number','1'),(1761,57,'_reasons_0_number','field_5ffca0a9a140d'),(1762,57,'reasons_0_title','Get ready to turn your home into your new gym'),(1763,57,'_reasons_0_title','field_5ffca1c17dcbd'),(1764,57,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(1765,57,'_reasons_0_content','field_5ffca1d37dcbe'),(1766,57,'reasons_0_static','54'),(1767,57,'_reasons_0_static','field_5ffca9f36c9c1'),(1768,57,'reasons_0_animate','0'),(1769,57,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(1770,57,'reasons_0_background_color','lightgray2'),(1771,57,'_reasons_0_background_color','field_5ffca2087dcc0'),(1772,57,'reasons_0_background_image','56'),(1773,57,'_reasons_0_background_image','field_5ffca965f8d44'),(1774,57,'reasons_1_text','Reason'),(1775,57,'_reasons_1_text','field_5ffca05ea140c'),(1776,57,'reasons_1_number','2'),(1777,57,'_reasons_1_number','field_5ffca0a9a140d'),(1778,57,'reasons_1_title','Toronto’s best gym'),(1779,57,'_reasons_1_title','field_5ffca1c17dcbd'),(1780,57,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(1781,57,'_reasons_1_content','field_5ffca1d37dcbe'),(1782,57,'reasons_1_static',''),(1783,57,'_reasons_1_static','field_5ffca9f36c9c1'),(1784,57,'reasons_1_animate','0'),(1785,57,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1786,57,'reasons_1_background_color','darkgray'),(1787,57,'_reasons_1_background_color','field_5ffca2087dcc0'),(1788,57,'reasons_1_background_image',''),(1789,57,'_reasons_1_background_image','field_5ffca965f8d44'),(1790,57,'reasons_2_text','Reason'),(1791,57,'_reasons_2_text','field_5ffca05ea140c'),(1792,57,'reasons_2_number','3'),(1793,57,'_reasons_2_number','field_5ffca0a9a140d'),(1794,57,'reasons_2_title','Virtual classes with live coaches'),(1795,57,'_reasons_2_title','field_5ffca1c17dcbd'),(1796,57,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1797,57,'_reasons_2_content','field_5ffca1d37dcbe'),(1798,57,'reasons_2_static',''),(1799,57,'_reasons_2_static','field_5ffca9f36c9c1'),(1800,57,'reasons_2_animate','0'),(1801,57,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1802,57,'reasons_2_background_color','white'),(1803,57,'_reasons_2_background_color','field_5ffca2087dcc0'),(1804,57,'reasons_2_background_image',''),(1805,57,'_reasons_2_background_image','field_5ffca965f8d44'),(1806,57,'reasons_3_text','Reason'),(1807,57,'_reasons_3_text','field_5ffca05ea140c'),(1808,57,'reasons_3_number','4'),(1809,57,'_reasons_3_number','field_5ffca0a9a140d'),(1810,57,'reasons_3_title','One community'),(1811,57,'_reasons_3_title','field_5ffca1c17dcbd'),(1812,57,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(1813,57,'_reasons_3_content','field_5ffca1d37dcbe'),(1814,57,'reasons_3_static',''),(1815,57,'_reasons_3_static','field_5ffca9f36c9c1'),(1816,57,'reasons_3_animate','0'),(1817,57,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(1818,57,'reasons_3_background_color','darkgray'),(1819,57,'_reasons_3_background_color','field_5ffca2087dcc0'),(1820,57,'reasons_3_background_image',''),(1821,57,'_reasons_3_background_image','field_5ffca965f8d44'),(1822,57,'reasons_4_text','Reason'),(1823,57,'_reasons_4_text','field_5ffca05ea140c'),(1824,57,'reasons_4_number','5'),(1825,57,'_reasons_4_number','field_5ffca0a9a140d'),(1826,57,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(1827,57,'_reasons_4_title','field_5ffca1c17dcbd'),(1828,57,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(1829,57,'_reasons_4_content','field_5ffca1d37dcbe'),(1830,57,'reasons_4_static',''),(1831,57,'_reasons_4_static','field_5ffca9f36c9c1'),(1832,57,'reasons_4_animate','0'),(1833,57,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(1834,57,'reasons_4_background_color','lightgray2'),(1835,57,'_reasons_4_background_color','field_5ffca2087dcc0'),(1836,57,'reasons_4_background_image',''),(1837,57,'_reasons_4_background_image','field_5ffca965f8d44'),(1838,57,'reasons_5_text','Reason'),(1839,57,'_reasons_5_text','field_5ffca05ea140c'),(1840,57,'reasons_5_number','6'),(1841,57,'_reasons_5_number','field_5ffca0a9a140d'),(1842,57,'reasons_5_title','More members means you pay less'),(1843,57,'_reasons_5_title','field_5ffca1c17dcbd'),(1844,57,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(1845,57,'_reasons_5_content','field_5ffca1d37dcbe'),(1846,57,'reasons_5_static',''),(1847,57,'_reasons_5_static','field_5ffca9f36c9c1'),(1848,57,'reasons_5_animate','0'),(1849,57,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(1850,57,'reasons_5_background_color','lightgray2'),(1851,57,'_reasons_5_background_color','field_5ffca2087dcc0'),(1852,57,'reasons_5_background_image',''),(1853,57,'_reasons_5_background_image','field_5ffca965f8d44'),(1854,57,'reasons_6_text','Reason'),(1855,57,'_reasons_6_text','field_5ffca05ea140c'),(1856,57,'reasons_6_number','7'),(1857,57,'_reasons_6_number','field_5ffca0a9a140d'),(1858,57,'reasons_6_title','Break your routine'),(1859,57,'_reasons_6_title','field_5ffca1c17dcbd'),(1860,57,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(1861,57,'_reasons_6_content','field_5ffca1d37dcbe'),(1862,57,'reasons_6_static',''),(1863,57,'_reasons_6_static','field_5ffca9f36c9c1'),(1864,57,'reasons_6_animate','0'),(1865,57,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(1866,57,'reasons_6_background_color','darkgray'),(1867,57,'_reasons_6_background_color','field_5ffca2087dcc0'),(1868,57,'reasons_6_background_image',''),(1869,57,'_reasons_6_background_image','field_5ffca965f8d44'),(1870,57,'reasons_7_text','Reason'),(1871,57,'_reasons_7_text','field_5ffca05ea140c'),(1872,57,'reasons_7_number','8'),(1873,57,'_reasons_7_number','field_5ffca0a9a140d'),(1874,57,'reasons_7_title','Your pace, your training'),(1875,57,'_reasons_7_title','field_5ffca1c17dcbd'),(1876,57,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(1877,57,'_reasons_7_content','field_5ffca1d37dcbe'),(1878,57,'reasons_7_static',''),(1879,57,'_reasons_7_static','field_5ffca9f36c9c1'),(1880,57,'reasons_7_animate','0'),(1881,57,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(1882,57,'reasons_7_background_color','white'),(1883,57,'_reasons_7_background_color','field_5ffca2087dcc0'),(1884,57,'reasons_7_background_image',''),(1885,57,'_reasons_7_background_image','field_5ffca965f8d44'),(1886,57,'reasons_8_text','Reason'),(1887,57,'_reasons_8_text','field_5ffca05ea140c'),(1888,57,'reasons_8_number','9'),(1889,57,'_reasons_8_number','field_5ffca0a9a140d'),(1890,57,'reasons_8_title','Expertly crafted workouts'),(1891,57,'_reasons_8_title','field_5ffca1c17dcbd'),(1892,57,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(1893,57,'_reasons_8_content','field_5ffca1d37dcbe'),(1894,57,'reasons_8_static',''),(1895,57,'_reasons_8_static','field_5ffca9f36c9c1'),(1896,57,'reasons_8_animate','0'),(1897,57,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(1898,57,'reasons_8_background_color','lightgray3'),(1899,57,'_reasons_8_background_color','field_5ffca2087dcc0'),(1900,57,'reasons_8_background_image',''),(1901,57,'_reasons_8_background_image','field_5ffca965f8d44'),(1902,57,'reasons_9_text','Reason'),(1903,57,'_reasons_9_text','field_5ffca05ea140c'),(1904,57,'reasons_9_number','10'),(1905,57,'_reasons_9_number','field_5ffca0a9a140d'),(1906,57,'reasons_9_title','Convenient class times'),(1907,57,'_reasons_9_title','field_5ffca1c17dcbd'),(1908,57,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(1909,57,'_reasons_9_content','field_5ffca1d37dcbe'),(1910,57,'reasons_9_static',''),(1911,57,'_reasons_9_static','field_5ffca9f36c9c1'),(1912,57,'reasons_9_animate','0'),(1913,57,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(1914,57,'reasons_9_background_color','darkgray'),(1915,57,'_reasons_9_background_color','field_5ffca2087dcc0'),(1916,57,'reasons_9_background_image',''),(1917,57,'_reasons_9_background_image','field_5ffca965f8d44'),(1918,57,'reasons','10'),(1919,57,'_reasons','field_5ffc9fa9a140a'),(1920,57,'reasons_1_second_image',''),(1921,57,'_reasons_1_second_image','field_5ffcab35014a4'),(1922,57,'reasons_4_second_image',''),(1923,57,'_reasons_4_second_image','field_5ffcab35014a4'),(1924,57,'reasons_6_second_image',''),(1925,57,'_reasons_6_second_image','field_5ffcab35014a4'),(1926,58,'_wp_attached_file','2021/01/reason02.png'),(1927,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:894;s:4:\"file\";s:20:\"2021/01/reason02.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason02-181x300.png\";s:5:\"width\";i:181;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason02-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:\"reason02-540x655.png\";s:5:\"width\";i:540;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason02-540x554.png\";s:5:\"width\";i:540;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1928,59,'_wp_attached_file','2021/01/selo-reason02.png'),(1929,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:166;s:4:\"file\";s:25:\"2021/01/selo-reason02.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"selo-reason02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1930,60,'title_gold','One Academy'),(1931,60,'_title_gold','field_5ffc850fff400'),(1932,60,'title_white','Virtual'),(1933,60,'_title_white','field_5ffc8523ff401'),(1934,60,'value','25'),(1935,60,'_value','field_5ffc87023f4a1'),(1936,60,'text_banner','1-Week Unlimited Virtual Classes'),(1937,60,'_text_banner','field_5ffc87313f4a2'),(1938,60,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(1939,60,'_link_button','field_5ffc87543f4a3'),(1940,60,'text_button_banner','Start Now'),(1941,60,'_text_button_banner','field_5ffc87833f4a4'),(1942,60,'text_button_scroll_top','Book Now'),(1943,60,'_text_button_scroll_top','field_5ffc87983f4a5'),(1944,60,'background_banner',''),(1945,60,'_background_banner','field_5ffc85ebcc1e9'),(1946,60,'static_image','52'),(1947,60,'_static_image','field_5ffc85fdcc1ea'),(1948,60,'animated','1'),(1949,60,'_animated','field_5ffc8668cc1eb'),(1950,60,'animated_image',''),(1951,60,'_animated_image','field_5ffc8683cc1ec'),(1952,60,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(1953,60,'_title_reasons','field_5ffc9f7220389'),(1954,60,'reasons_0_text','Reason'),(1955,60,'_reasons_0_text','field_5ffca05ea140c'),(1956,60,'reasons_0_number','1'),(1957,60,'_reasons_0_number','field_5ffca0a9a140d'),(1958,60,'reasons_0_title','Get ready to turn your home into your new gym'),(1959,60,'_reasons_0_title','field_5ffca1c17dcbd'),(1960,60,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(1961,60,'_reasons_0_content','field_5ffca1d37dcbe'),(1962,60,'reasons_0_static','54'),(1963,60,'_reasons_0_static','field_5ffca9f36c9c1'),(1964,60,'reasons_0_animate','0'),(1965,60,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(1966,60,'reasons_0_background_color','lightgray2'),(1967,60,'_reasons_0_background_color','field_5ffca2087dcc0'),(1968,60,'reasons_0_background_image','56'),(1969,60,'_reasons_0_background_image','field_5ffca965f8d44'),(1970,60,'reasons_1_text','Reason'),(1971,60,'_reasons_1_text','field_5ffca05ea140c'),(1972,60,'reasons_1_number','2'),(1973,60,'_reasons_1_number','field_5ffca0a9a140d'),(1974,60,'reasons_1_title','Toronto’s best gym'),(1975,60,'_reasons_1_title','field_5ffca1c17dcbd'),(1976,60,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(1977,60,'_reasons_1_content','field_5ffca1d37dcbe'),(1978,60,'reasons_1_static','58'),(1979,60,'_reasons_1_static','field_5ffca9f36c9c1'),(1980,60,'reasons_1_animate','0'),(1981,60,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(1982,60,'reasons_1_background_color','darkgray'),(1983,60,'_reasons_1_background_color','field_5ffca2087dcc0'),(1984,60,'reasons_1_background_image',''),(1985,60,'_reasons_1_background_image','field_5ffca965f8d44'),(1986,60,'reasons_2_text','Reason'),(1987,60,'_reasons_2_text','field_5ffca05ea140c'),(1988,60,'reasons_2_number','3'),(1989,60,'_reasons_2_number','field_5ffca0a9a140d'),(1990,60,'reasons_2_title','Virtual classes with live coaches'),(1991,60,'_reasons_2_title','field_5ffca1c17dcbd'),(1992,60,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(1993,60,'_reasons_2_content','field_5ffca1d37dcbe'),(1994,60,'reasons_2_static',''),(1995,60,'_reasons_2_static','field_5ffca9f36c9c1'),(1996,60,'reasons_2_animate','0'),(1997,60,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(1998,60,'reasons_2_background_color','white'),(1999,60,'_reasons_2_background_color','field_5ffca2087dcc0'),(2000,60,'reasons_2_background_image',''),(2001,60,'_reasons_2_background_image','field_5ffca965f8d44'),(2002,60,'reasons_3_text','Reason'),(2003,60,'_reasons_3_text','field_5ffca05ea140c'),(2004,60,'reasons_3_number','4'),(2005,60,'_reasons_3_number','field_5ffca0a9a140d'),(2006,60,'reasons_3_title','One community'),(2007,60,'_reasons_3_title','field_5ffca1c17dcbd'),(2008,60,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2009,60,'_reasons_3_content','field_5ffca1d37dcbe'),(2010,60,'reasons_3_static',''),(2011,60,'_reasons_3_static','field_5ffca9f36c9c1'),(2012,60,'reasons_3_animate','0'),(2013,60,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(2014,60,'reasons_3_background_color','darkgray'),(2015,60,'_reasons_3_background_color','field_5ffca2087dcc0'),(2016,60,'reasons_3_background_image',''),(2017,60,'_reasons_3_background_image','field_5ffca965f8d44'),(2018,60,'reasons_4_text','Reason'),(2019,60,'_reasons_4_text','field_5ffca05ea140c'),(2020,60,'reasons_4_number','5'),(2021,60,'_reasons_4_number','field_5ffca0a9a140d'),(2022,60,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(2023,60,'_reasons_4_title','field_5ffca1c17dcbd'),(2024,60,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(2025,60,'_reasons_4_content','field_5ffca1d37dcbe'),(2026,60,'reasons_4_static',''),(2027,60,'_reasons_4_static','field_5ffca9f36c9c1'),(2028,60,'reasons_4_animate','0'),(2029,60,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(2030,60,'reasons_4_background_color','lightgray2'),(2031,60,'_reasons_4_background_color','field_5ffca2087dcc0'),(2032,60,'reasons_4_background_image',''),(2033,60,'_reasons_4_background_image','field_5ffca965f8d44'),(2034,60,'reasons_5_text','Reason'),(2035,60,'_reasons_5_text','field_5ffca05ea140c'),(2036,60,'reasons_5_number','6'),(2037,60,'_reasons_5_number','field_5ffca0a9a140d'),(2038,60,'reasons_5_title','More members means you pay less'),(2039,60,'_reasons_5_title','field_5ffca1c17dcbd'),(2040,60,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(2041,60,'_reasons_5_content','field_5ffca1d37dcbe'),(2042,60,'reasons_5_static',''),(2043,60,'_reasons_5_static','field_5ffca9f36c9c1'),(2044,60,'reasons_5_animate','0'),(2045,60,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(2046,60,'reasons_5_background_color','lightgray2'),(2047,60,'_reasons_5_background_color','field_5ffca2087dcc0'),(2048,60,'reasons_5_background_image',''),(2049,60,'_reasons_5_background_image','field_5ffca965f8d44'),(2050,60,'reasons_6_text','Reason'),(2051,60,'_reasons_6_text','field_5ffca05ea140c'),(2052,60,'reasons_6_number','7'),(2053,60,'_reasons_6_number','field_5ffca0a9a140d'),(2054,60,'reasons_6_title','Break your routine'),(2055,60,'_reasons_6_title','field_5ffca1c17dcbd'),(2056,60,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(2057,60,'_reasons_6_content','field_5ffca1d37dcbe'),(2058,60,'reasons_6_static',''),(2059,60,'_reasons_6_static','field_5ffca9f36c9c1'),(2060,60,'reasons_6_animate','0'),(2061,60,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(2062,60,'reasons_6_background_color','darkgray'),(2063,60,'_reasons_6_background_color','field_5ffca2087dcc0'),(2064,60,'reasons_6_background_image',''),(2065,60,'_reasons_6_background_image','field_5ffca965f8d44'),(2066,60,'reasons_7_text','Reason'),(2067,60,'_reasons_7_text','field_5ffca05ea140c'),(2068,60,'reasons_7_number','8'),(2069,60,'_reasons_7_number','field_5ffca0a9a140d'),(2070,60,'reasons_7_title','Your pace, your training'),(2071,60,'_reasons_7_title','field_5ffca1c17dcbd'),(2072,60,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(2073,60,'_reasons_7_content','field_5ffca1d37dcbe'),(2074,60,'reasons_7_static',''),(2075,60,'_reasons_7_static','field_5ffca9f36c9c1'),(2076,60,'reasons_7_animate','0'),(2077,60,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(2078,60,'reasons_7_background_color','white'),(2079,60,'_reasons_7_background_color','field_5ffca2087dcc0'),(2080,60,'reasons_7_background_image',''),(2081,60,'_reasons_7_background_image','field_5ffca965f8d44'),(2082,60,'reasons_8_text','Reason'),(2083,60,'_reasons_8_text','field_5ffca05ea140c'),(2084,60,'reasons_8_number','9'),(2085,60,'_reasons_8_number','field_5ffca0a9a140d'),(2086,60,'reasons_8_title','Expertly crafted workouts'),(2087,60,'_reasons_8_title','field_5ffca1c17dcbd'),(2088,60,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(2089,60,'_reasons_8_content','field_5ffca1d37dcbe'),(2090,60,'reasons_8_static',''),(2091,60,'_reasons_8_static','field_5ffca9f36c9c1'),(2092,60,'reasons_8_animate','0'),(2093,60,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(2094,60,'reasons_8_background_color','lightgray3'),(2095,60,'_reasons_8_background_color','field_5ffca2087dcc0'),(2096,60,'reasons_8_background_image',''),(2097,60,'_reasons_8_background_image','field_5ffca965f8d44'),(2098,60,'reasons_9_text','Reason'),(2099,60,'_reasons_9_text','field_5ffca05ea140c'),(2100,60,'reasons_9_number','10'),(2101,60,'_reasons_9_number','field_5ffca0a9a140d'),(2102,60,'reasons_9_title','Convenient class times'),(2103,60,'_reasons_9_title','field_5ffca1c17dcbd'),(2104,60,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(2105,60,'_reasons_9_content','field_5ffca1d37dcbe'),(2106,60,'reasons_9_static',''),(2107,60,'_reasons_9_static','field_5ffca9f36c9c1'),(2108,60,'reasons_9_animate','0'),(2109,60,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(2110,60,'reasons_9_background_color','darkgray'),(2111,60,'_reasons_9_background_color','field_5ffca2087dcc0'),(2112,60,'reasons_9_background_image',''),(2113,60,'_reasons_9_background_image','field_5ffca965f8d44'),(2114,60,'reasons','10'),(2115,60,'_reasons','field_5ffc9fa9a140a'),(2116,60,'reasons_1_second_image','59'),(2117,60,'_reasons_1_second_image','field_5ffcab35014a4'),(2118,60,'reasons_4_second_image',''),(2119,60,'_reasons_4_second_image','field_5ffcab35014a4'),(2120,60,'reasons_6_second_image',''),(2121,60,'_reasons_6_second_image','field_5ffcab35014a4'),(2122,61,'_wp_attached_file','2021/01/reason03.png'),(2123,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:706;s:6:\"height\";i:631;s:4:\"file\";s:20:\"2021/01/reason03.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason03-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason03-706x554.png\";s:5:\"width\";i:706;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2124,5,'reasons_2_animated','82'),(2125,5,'_reasons_2_animated','field_5ffcaa376c9c3'),(2126,62,'title_gold','One Academy'),(2127,62,'_title_gold','field_5ffc850fff400'),(2128,62,'title_white','Virtual'),(2129,62,'_title_white','field_5ffc8523ff401'),(2130,62,'value','25'),(2131,62,'_value','field_5ffc87023f4a1'),(2132,62,'text_banner','1-Week Unlimited Virtual Classes'),(2133,62,'_text_banner','field_5ffc87313f4a2'),(2134,62,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(2135,62,'_link_button','field_5ffc87543f4a3'),(2136,62,'text_button_banner','Start Now'),(2137,62,'_text_button_banner','field_5ffc87833f4a4'),(2138,62,'text_button_scroll_top','Book Now'),(2139,62,'_text_button_scroll_top','field_5ffc87983f4a5'),(2140,62,'background_banner',''),(2141,62,'_background_banner','field_5ffc85ebcc1e9'),(2142,62,'static_image','52'),(2143,62,'_static_image','field_5ffc85fdcc1ea'),(2144,62,'animated','1'),(2145,62,'_animated','field_5ffc8668cc1eb'),(2146,62,'animated_image',''),(2147,62,'_animated_image','field_5ffc8683cc1ec'),(2148,62,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(2149,62,'_title_reasons','field_5ffc9f7220389'),(2150,62,'reasons_0_text','Reason'),(2151,62,'_reasons_0_text','field_5ffca05ea140c'),(2152,62,'reasons_0_number','1'),(2153,62,'_reasons_0_number','field_5ffca0a9a140d'),(2154,62,'reasons_0_title','Get ready to turn your home into your new gym'),(2155,62,'_reasons_0_title','field_5ffca1c17dcbd'),(2156,62,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(2157,62,'_reasons_0_content','field_5ffca1d37dcbe'),(2158,62,'reasons_0_static','54'),(2159,62,'_reasons_0_static','field_5ffca9f36c9c1'),(2160,62,'reasons_0_animate','0'),(2161,62,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(2162,62,'reasons_0_background_color','lightgray2'),(2163,62,'_reasons_0_background_color','field_5ffca2087dcc0'),(2164,62,'reasons_0_background_image','56'),(2165,62,'_reasons_0_background_image','field_5ffca965f8d44'),(2166,62,'reasons_1_text','Reason'),(2167,62,'_reasons_1_text','field_5ffca05ea140c'),(2168,62,'reasons_1_number','2'),(2169,62,'_reasons_1_number','field_5ffca0a9a140d'),(2170,62,'reasons_1_title','Toronto’s best gym'),(2171,62,'_reasons_1_title','field_5ffca1c17dcbd'),(2172,62,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(2173,62,'_reasons_1_content','field_5ffca1d37dcbe'),(2174,62,'reasons_1_static','58'),(2175,62,'_reasons_1_static','field_5ffca9f36c9c1'),(2176,62,'reasons_1_animate','0'),(2177,62,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(2178,62,'reasons_1_background_color','darkgray'),(2179,62,'_reasons_1_background_color','field_5ffca2087dcc0'),(2180,62,'reasons_1_background_image',''),(2181,62,'_reasons_1_background_image','field_5ffca965f8d44'),(2182,62,'reasons_2_text','Reason'),(2183,62,'_reasons_2_text','field_5ffca05ea140c'),(2184,62,'reasons_2_number','3'),(2185,62,'_reasons_2_number','field_5ffca0a9a140d'),(2186,62,'reasons_2_title','Virtual classes with live coaches'),(2187,62,'_reasons_2_title','field_5ffca1c17dcbd'),(2188,62,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(2189,62,'_reasons_2_content','field_5ffca1d37dcbe'),(2190,62,'reasons_2_static','61'),(2191,62,'_reasons_2_static','field_5ffca9f36c9c1'),(2192,62,'reasons_2_animate','1'),(2193,62,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(2194,62,'reasons_2_background_color','white'),(2195,62,'_reasons_2_background_color','field_5ffca2087dcc0'),(2196,62,'reasons_2_background_image',''),(2197,62,'_reasons_2_background_image','field_5ffca965f8d44'),(2198,62,'reasons_3_text','Reason'),(2199,62,'_reasons_3_text','field_5ffca05ea140c'),(2200,62,'reasons_3_number','4'),(2201,62,'_reasons_3_number','field_5ffca0a9a140d'),(2202,62,'reasons_3_title','One community'),(2203,62,'_reasons_3_title','field_5ffca1c17dcbd'),(2204,62,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2205,62,'_reasons_3_content','field_5ffca1d37dcbe'),(2206,62,'reasons_3_static',''),(2207,62,'_reasons_3_static','field_5ffca9f36c9c1'),(2208,62,'reasons_3_animate','0'),(2209,62,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(2210,62,'reasons_3_background_color','darkgray'),(2211,62,'_reasons_3_background_color','field_5ffca2087dcc0'),(2212,62,'reasons_3_background_image',''),(2213,62,'_reasons_3_background_image','field_5ffca965f8d44'),(2214,62,'reasons_4_text','Reason'),(2215,62,'_reasons_4_text','field_5ffca05ea140c'),(2216,62,'reasons_4_number','5'),(2217,62,'_reasons_4_number','field_5ffca0a9a140d'),(2218,62,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(2219,62,'_reasons_4_title','field_5ffca1c17dcbd'),(2220,62,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(2221,62,'_reasons_4_content','field_5ffca1d37dcbe'),(2222,62,'reasons_4_static',''),(2223,62,'_reasons_4_static','field_5ffca9f36c9c1'),(2224,62,'reasons_4_animate','0'),(2225,62,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(2226,62,'reasons_4_background_color','lightgray2'),(2227,62,'_reasons_4_background_color','field_5ffca2087dcc0'),(2228,62,'reasons_4_background_image',''),(2229,62,'_reasons_4_background_image','field_5ffca965f8d44'),(2230,62,'reasons_5_text','Reason'),(2231,62,'_reasons_5_text','field_5ffca05ea140c'),(2232,62,'reasons_5_number','6'),(2233,62,'_reasons_5_number','field_5ffca0a9a140d'),(2234,62,'reasons_5_title','More members means you pay less'),(2235,62,'_reasons_5_title','field_5ffca1c17dcbd'),(2236,62,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(2237,62,'_reasons_5_content','field_5ffca1d37dcbe'),(2238,62,'reasons_5_static',''),(2239,62,'_reasons_5_static','field_5ffca9f36c9c1'),(2240,62,'reasons_5_animate','0'),(2241,62,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(2242,62,'reasons_5_background_color','lightgray2'),(2243,62,'_reasons_5_background_color','field_5ffca2087dcc0'),(2244,62,'reasons_5_background_image',''),(2245,62,'_reasons_5_background_image','field_5ffca965f8d44'),(2246,62,'reasons_6_text','Reason'),(2247,62,'_reasons_6_text','field_5ffca05ea140c'),(2248,62,'reasons_6_number','7'),(2249,62,'_reasons_6_number','field_5ffca0a9a140d'),(2250,62,'reasons_6_title','Break your routine'),(2251,62,'_reasons_6_title','field_5ffca1c17dcbd'),(2252,62,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(2253,62,'_reasons_6_content','field_5ffca1d37dcbe'),(2254,62,'reasons_6_static',''),(2255,62,'_reasons_6_static','field_5ffca9f36c9c1'),(2256,62,'reasons_6_animate','0'),(2257,62,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(2258,62,'reasons_6_background_color','darkgray'),(2259,62,'_reasons_6_background_color','field_5ffca2087dcc0'),(2260,62,'reasons_6_background_image',''),(2261,62,'_reasons_6_background_image','field_5ffca965f8d44'),(2262,62,'reasons_7_text','Reason'),(2263,62,'_reasons_7_text','field_5ffca05ea140c'),(2264,62,'reasons_7_number','8'),(2265,62,'_reasons_7_number','field_5ffca0a9a140d'),(2266,62,'reasons_7_title','Your pace, your training'),(2267,62,'_reasons_7_title','field_5ffca1c17dcbd'),(2268,62,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(2269,62,'_reasons_7_content','field_5ffca1d37dcbe'),(2270,62,'reasons_7_static',''),(2271,62,'_reasons_7_static','field_5ffca9f36c9c1'),(2272,62,'reasons_7_animate','0'),(2273,62,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(2274,62,'reasons_7_background_color','white'),(2275,62,'_reasons_7_background_color','field_5ffca2087dcc0'),(2276,62,'reasons_7_background_image',''),(2277,62,'_reasons_7_background_image','field_5ffca965f8d44'),(2278,62,'reasons_8_text','Reason'),(2279,62,'_reasons_8_text','field_5ffca05ea140c'),(2280,62,'reasons_8_number','9'),(2281,62,'_reasons_8_number','field_5ffca0a9a140d'),(2282,62,'reasons_8_title','Expertly crafted workouts'),(2283,62,'_reasons_8_title','field_5ffca1c17dcbd'),(2284,62,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(2285,62,'_reasons_8_content','field_5ffca1d37dcbe'),(2286,62,'reasons_8_static',''),(2287,62,'_reasons_8_static','field_5ffca9f36c9c1'),(2288,62,'reasons_8_animate','0'),(2289,62,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(2290,62,'reasons_8_background_color','lightgray3'),(2291,62,'_reasons_8_background_color','field_5ffca2087dcc0'),(2292,62,'reasons_8_background_image',''),(2293,62,'_reasons_8_background_image','field_5ffca965f8d44'),(2294,62,'reasons_9_text','Reason'),(2295,62,'_reasons_9_text','field_5ffca05ea140c'),(2296,62,'reasons_9_number','10'),(2297,62,'_reasons_9_number','field_5ffca0a9a140d'),(2298,62,'reasons_9_title','Convenient class times'),(2299,62,'_reasons_9_title','field_5ffca1c17dcbd'),(2300,62,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(2301,62,'_reasons_9_content','field_5ffca1d37dcbe'),(2302,62,'reasons_9_static',''),(2303,62,'_reasons_9_static','field_5ffca9f36c9c1'),(2304,62,'reasons_9_animate','0'),(2305,62,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(2306,62,'reasons_9_background_color','darkgray'),(2307,62,'_reasons_9_background_color','field_5ffca2087dcc0'),(2308,62,'reasons_9_background_image',''),(2309,62,'_reasons_9_background_image','field_5ffca965f8d44'),(2310,62,'reasons','10'),(2311,62,'_reasons','field_5ffc9fa9a140a'),(2312,62,'reasons_1_second_image','59'),(2313,62,'_reasons_1_second_image','field_5ffcab35014a4'),(2314,62,'reasons_4_second_image',''),(2315,62,'_reasons_4_second_image','field_5ffcab35014a4'),(2316,62,'reasons_6_second_image',''),(2317,62,'_reasons_6_second_image','field_5ffcab35014a4'),(2318,62,'reasons_2_animated','61'),(2319,62,'_reasons_2_animated','field_5ffcaa376c9c3'),(2320,63,'title_gold','One Academy'),(2321,63,'_title_gold','field_5ffc850fff400'),(2322,63,'title_white','Virtual'),(2323,63,'_title_white','field_5ffc8523ff401'),(2324,63,'value','25'),(2325,63,'_value','field_5ffc87023f4a1'),(2326,63,'text_banner','1-Week Unlimited Virtual Classes'),(2327,63,'_text_banner','field_5ffc87313f4a2'),(2328,63,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(2329,63,'_link_button','field_5ffc87543f4a3'),(2330,63,'text_button_banner','Start Now'),(2331,63,'_text_button_banner','field_5ffc87833f4a4'),(2332,63,'text_button_scroll_top','Book Now'),(2333,63,'_text_button_scroll_top','field_5ffc87983f4a5'),(2334,63,'background_banner',''),(2335,63,'_background_banner','field_5ffc85ebcc1e9'),(2336,63,'static_image','52'),(2337,63,'_static_image','field_5ffc85fdcc1ea'),(2338,63,'animated','1'),(2339,63,'_animated','field_5ffc8668cc1eb'),(2340,63,'animated_image','52'),(2341,63,'_animated_image','field_5ffc8683cc1ec'),(2342,63,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(2343,63,'_title_reasons','field_5ffc9f7220389'),(2344,63,'reasons_0_text','Reason'),(2345,63,'_reasons_0_text','field_5ffca05ea140c'),(2346,63,'reasons_0_number','1'),(2347,63,'_reasons_0_number','field_5ffca0a9a140d'),(2348,63,'reasons_0_title','Get ready to turn your home into your new gym'),(2349,63,'_reasons_0_title','field_5ffca1c17dcbd'),(2350,63,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(2351,63,'_reasons_0_content','field_5ffca1d37dcbe'),(2352,63,'reasons_0_static','54'),(2353,63,'_reasons_0_static','field_5ffca9f36c9c1'),(2354,63,'reasons_0_animate','0'),(2355,63,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(2356,63,'reasons_0_background_color','lightgray2'),(2357,63,'_reasons_0_background_color','field_5ffca2087dcc0'),(2358,63,'reasons_0_background_image','56'),(2359,63,'_reasons_0_background_image','field_5ffca965f8d44'),(2360,63,'reasons_1_text','Reason'),(2361,63,'_reasons_1_text','field_5ffca05ea140c'),(2362,63,'reasons_1_number','2'),(2363,63,'_reasons_1_number','field_5ffca0a9a140d'),(2364,63,'reasons_1_title','Toronto’s best gym'),(2365,63,'_reasons_1_title','field_5ffca1c17dcbd'),(2366,63,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(2367,63,'_reasons_1_content','field_5ffca1d37dcbe'),(2368,63,'reasons_1_static','58'),(2369,63,'_reasons_1_static','field_5ffca9f36c9c1'),(2370,63,'reasons_1_animate','0'),(2371,63,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(2372,63,'reasons_1_background_color','darkgray'),(2373,63,'_reasons_1_background_color','field_5ffca2087dcc0'),(2374,63,'reasons_1_background_image',''),(2375,63,'_reasons_1_background_image','field_5ffca965f8d44'),(2376,63,'reasons_2_text','Reason'),(2377,63,'_reasons_2_text','field_5ffca05ea140c'),(2378,63,'reasons_2_number','3'),(2379,63,'_reasons_2_number','field_5ffca0a9a140d'),(2380,63,'reasons_2_title','Virtual classes with live coaches'),(2381,63,'_reasons_2_title','field_5ffca1c17dcbd'),(2382,63,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(2383,63,'_reasons_2_content','field_5ffca1d37dcbe'),(2384,63,'reasons_2_static','61'),(2385,63,'_reasons_2_static','field_5ffca9f36c9c1'),(2386,63,'reasons_2_animate','1'),(2387,63,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(2388,63,'reasons_2_background_color','white'),(2389,63,'_reasons_2_background_color','field_5ffca2087dcc0'),(2390,63,'reasons_2_background_image',''),(2391,63,'_reasons_2_background_image','field_5ffca965f8d44'),(2392,63,'reasons_3_text','Reason'),(2393,63,'_reasons_3_text','field_5ffca05ea140c'),(2394,63,'reasons_3_number','4'),(2395,63,'_reasons_3_number','field_5ffca0a9a140d'),(2396,63,'reasons_3_title','One community'),(2397,63,'_reasons_3_title','field_5ffca1c17dcbd'),(2398,63,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2399,63,'_reasons_3_content','field_5ffca1d37dcbe'),(2400,63,'reasons_3_static',''),(2401,63,'_reasons_3_static','field_5ffca9f36c9c1'),(2402,63,'reasons_3_animate','0'),(2403,63,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(2404,63,'reasons_3_background_color','darkgray'),(2405,63,'_reasons_3_background_color','field_5ffca2087dcc0'),(2406,63,'reasons_3_background_image',''),(2407,63,'_reasons_3_background_image','field_5ffca965f8d44'),(2408,63,'reasons_4_text','Reason'),(2409,63,'_reasons_4_text','field_5ffca05ea140c'),(2410,63,'reasons_4_number','5'),(2411,63,'_reasons_4_number','field_5ffca0a9a140d'),(2412,63,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(2413,63,'_reasons_4_title','field_5ffca1c17dcbd'),(2414,63,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(2415,63,'_reasons_4_content','field_5ffca1d37dcbe'),(2416,63,'reasons_4_static',''),(2417,63,'_reasons_4_static','field_5ffca9f36c9c1'),(2418,63,'reasons_4_animate','0'),(2419,63,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(2420,63,'reasons_4_background_color','lightgray2'),(2421,63,'_reasons_4_background_color','field_5ffca2087dcc0'),(2422,63,'reasons_4_background_image',''),(2423,63,'_reasons_4_background_image','field_5ffca965f8d44'),(2424,63,'reasons_5_text','Reason'),(2425,63,'_reasons_5_text','field_5ffca05ea140c'),(2426,63,'reasons_5_number','6'),(2427,63,'_reasons_5_number','field_5ffca0a9a140d'),(2428,63,'reasons_5_title','More members means you pay less'),(2429,63,'_reasons_5_title','field_5ffca1c17dcbd'),(2430,63,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(2431,63,'_reasons_5_content','field_5ffca1d37dcbe'),(2432,63,'reasons_5_static',''),(2433,63,'_reasons_5_static','field_5ffca9f36c9c1'),(2434,63,'reasons_5_animate','0'),(2435,63,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(2436,63,'reasons_5_background_color','lightgray2'),(2437,63,'_reasons_5_background_color','field_5ffca2087dcc0'),(2438,63,'reasons_5_background_image',''),(2439,63,'_reasons_5_background_image','field_5ffca965f8d44'),(2440,63,'reasons_6_text','Reason'),(2441,63,'_reasons_6_text','field_5ffca05ea140c'),(2442,63,'reasons_6_number','7'),(2443,63,'_reasons_6_number','field_5ffca0a9a140d'),(2444,63,'reasons_6_title','Break your routine'),(2445,63,'_reasons_6_title','field_5ffca1c17dcbd'),(2446,63,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(2447,63,'_reasons_6_content','field_5ffca1d37dcbe'),(2448,63,'reasons_6_static',''),(2449,63,'_reasons_6_static','field_5ffca9f36c9c1'),(2450,63,'reasons_6_animate','0'),(2451,63,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(2452,63,'reasons_6_background_color','darkgray'),(2453,63,'_reasons_6_background_color','field_5ffca2087dcc0'),(2454,63,'reasons_6_background_image',''),(2455,63,'_reasons_6_background_image','field_5ffca965f8d44'),(2456,63,'reasons_7_text','Reason'),(2457,63,'_reasons_7_text','field_5ffca05ea140c'),(2458,63,'reasons_7_number','8'),(2459,63,'_reasons_7_number','field_5ffca0a9a140d'),(2460,63,'reasons_7_title','Your pace, your training'),(2461,63,'_reasons_7_title','field_5ffca1c17dcbd'),(2462,63,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(2463,63,'_reasons_7_content','field_5ffca1d37dcbe'),(2464,63,'reasons_7_static',''),(2465,63,'_reasons_7_static','field_5ffca9f36c9c1'),(2466,63,'reasons_7_animate','0'),(2467,63,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(2468,63,'reasons_7_background_color','white'),(2469,63,'_reasons_7_background_color','field_5ffca2087dcc0'),(2470,63,'reasons_7_background_image',''),(2471,63,'_reasons_7_background_image','field_5ffca965f8d44'),(2472,63,'reasons_8_text','Reason'),(2473,63,'_reasons_8_text','field_5ffca05ea140c'),(2474,63,'reasons_8_number','9'),(2475,63,'_reasons_8_number','field_5ffca0a9a140d'),(2476,63,'reasons_8_title','Expertly crafted workouts'),(2477,63,'_reasons_8_title','field_5ffca1c17dcbd'),(2478,63,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(2479,63,'_reasons_8_content','field_5ffca1d37dcbe'),(2480,63,'reasons_8_static',''),(2481,63,'_reasons_8_static','field_5ffca9f36c9c1'),(2482,63,'reasons_8_animate','0'),(2483,63,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(2484,63,'reasons_8_background_color','lightgray3'),(2485,63,'_reasons_8_background_color','field_5ffca2087dcc0'),(2486,63,'reasons_8_background_image',''),(2487,63,'_reasons_8_background_image','field_5ffca965f8d44'),(2488,63,'reasons_9_text','Reason'),(2489,63,'_reasons_9_text','field_5ffca05ea140c'),(2490,63,'reasons_9_number','10'),(2491,63,'_reasons_9_number','field_5ffca0a9a140d'),(2492,63,'reasons_9_title','Convenient class times'),(2493,63,'_reasons_9_title','field_5ffca1c17dcbd'),(2494,63,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(2495,63,'_reasons_9_content','field_5ffca1d37dcbe'),(2496,63,'reasons_9_static',''),(2497,63,'_reasons_9_static','field_5ffca9f36c9c1'),(2498,63,'reasons_9_animate','0'),(2499,63,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(2500,63,'reasons_9_background_color','darkgray'),(2501,63,'_reasons_9_background_color','field_5ffca2087dcc0'),(2502,63,'reasons_9_background_image',''),(2503,63,'_reasons_9_background_image','field_5ffca965f8d44'),(2504,63,'reasons','10'),(2505,63,'_reasons','field_5ffc9fa9a140a'),(2506,63,'reasons_1_second_image','59'),(2507,63,'_reasons_1_second_image','field_5ffcab35014a4'),(2508,63,'reasons_4_second_image',''),(2509,63,'_reasons_4_second_image','field_5ffcab35014a4'),(2510,63,'reasons_6_second_image',''),(2511,63,'_reasons_6_second_image','field_5ffcab35014a4'),(2512,63,'reasons_2_animated','61'),(2513,63,'_reasons_2_animated','field_5ffcaa376c9c3'),(2514,64,'_wp_attached_file','2021/01/reason04.png'),(2515,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:190;s:4:\"file\";s:20:\"2021/01/reason04.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2516,65,'_wp_attached_file','2021/01/big-logo2.svg'),(2517,65,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:440;s:6:\"height\";i:312;s:4:\"file\";s:22:\"/2021/01/big-logo2.svg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"banner-desktop\";a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"big-logo2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2518,66,'title_gold','One Academy'),(2519,66,'_title_gold','field_5ffc850fff400'),(2520,66,'title_white','Virtual'),(2521,66,'_title_white','field_5ffc8523ff401'),(2522,66,'value','25'),(2523,66,'_value','field_5ffc87023f4a1'),(2524,66,'text_banner','1-Week Unlimited Virtual Classes'),(2525,66,'_text_banner','field_5ffc87313f4a2'),(2526,66,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(2527,66,'_link_button','field_5ffc87543f4a3'),(2528,66,'text_button_banner','Start Now'),(2529,66,'_text_button_banner','field_5ffc87833f4a4'),(2530,66,'text_button_scroll_top','Book Now'),(2531,66,'_text_button_scroll_top','field_5ffc87983f4a5'),(2532,66,'background_banner',''),(2533,66,'_background_banner','field_5ffc85ebcc1e9'),(2534,66,'static_image','52'),(2535,66,'_static_image','field_5ffc85fdcc1ea'),(2536,66,'animated','1'),(2537,66,'_animated','field_5ffc8668cc1eb'),(2538,66,'animated_image','52'),(2539,66,'_animated_image','field_5ffc8683cc1ec'),(2540,66,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(2541,66,'_title_reasons','field_5ffc9f7220389'),(2542,66,'reasons_0_text','Reason'),(2543,66,'_reasons_0_text','field_5ffca05ea140c'),(2544,66,'reasons_0_number','1'),(2545,66,'_reasons_0_number','field_5ffca0a9a140d'),(2546,66,'reasons_0_title','Get ready to turn your home into your new gym'),(2547,66,'_reasons_0_title','field_5ffca1c17dcbd'),(2548,66,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(2549,66,'_reasons_0_content','field_5ffca1d37dcbe'),(2550,66,'reasons_0_static','54'),(2551,66,'_reasons_0_static','field_5ffca9f36c9c1'),(2552,66,'reasons_0_animate','0'),(2553,66,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(2554,66,'reasons_0_background_color','lightgray2'),(2555,66,'_reasons_0_background_color','field_5ffca2087dcc0'),(2556,66,'reasons_0_background_image','56'),(2557,66,'_reasons_0_background_image','field_5ffca965f8d44'),(2558,66,'reasons_1_text','Reason'),(2559,66,'_reasons_1_text','field_5ffca05ea140c'),(2560,66,'reasons_1_number','2'),(2561,66,'_reasons_1_number','field_5ffca0a9a140d'),(2562,66,'reasons_1_title','Toronto’s best gym'),(2563,66,'_reasons_1_title','field_5ffca1c17dcbd'),(2564,66,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(2565,66,'_reasons_1_content','field_5ffca1d37dcbe'),(2566,66,'reasons_1_static','58'),(2567,66,'_reasons_1_static','field_5ffca9f36c9c1'),(2568,66,'reasons_1_animate','0'),(2569,66,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(2570,66,'reasons_1_background_color','darkgray'),(2571,66,'_reasons_1_background_color','field_5ffca2087dcc0'),(2572,66,'reasons_1_background_image',''),(2573,66,'_reasons_1_background_image','field_5ffca965f8d44'),(2574,66,'reasons_2_text','Reason'),(2575,66,'_reasons_2_text','field_5ffca05ea140c'),(2576,66,'reasons_2_number','3'),(2577,66,'_reasons_2_number','field_5ffca0a9a140d'),(2578,66,'reasons_2_title','Virtual classes with live coaches'),(2579,66,'_reasons_2_title','field_5ffca1c17dcbd'),(2580,66,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(2581,66,'_reasons_2_content','field_5ffca1d37dcbe'),(2582,66,'reasons_2_static','61'),(2583,66,'_reasons_2_static','field_5ffca9f36c9c1'),(2584,66,'reasons_2_animate','1'),(2585,66,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(2586,66,'reasons_2_background_color','white'),(2587,66,'_reasons_2_background_color','field_5ffca2087dcc0'),(2588,66,'reasons_2_background_image',''),(2589,66,'_reasons_2_background_image','field_5ffca965f8d44'),(2590,66,'reasons_3_text','Reason'),(2591,66,'_reasons_3_text','field_5ffca05ea140c'),(2592,66,'reasons_3_number','4'),(2593,66,'_reasons_3_number','field_5ffca0a9a140d'),(2594,66,'reasons_3_title','One community'),(2595,66,'_reasons_3_title','field_5ffca1c17dcbd'),(2596,66,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2597,66,'_reasons_3_content','field_5ffca1d37dcbe'),(2598,66,'reasons_3_static','64'),(2599,66,'_reasons_3_static','field_5ffca9f36c9c1'),(2600,66,'reasons_3_animate','0'),(2601,66,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(2602,66,'reasons_3_background_color','darkgray'),(2603,66,'_reasons_3_background_color','field_5ffca2087dcc0'),(2604,66,'reasons_3_background_image','65'),(2605,66,'_reasons_3_background_image','field_5ffca965f8d44'),(2606,66,'reasons_4_text','Reason'),(2607,66,'_reasons_4_text','field_5ffca05ea140c'),(2608,66,'reasons_4_number','5'),(2609,66,'_reasons_4_number','field_5ffca0a9a140d'),(2610,66,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(2611,66,'_reasons_4_title','field_5ffca1c17dcbd'),(2612,66,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(2613,66,'_reasons_4_content','field_5ffca1d37dcbe'),(2614,66,'reasons_4_static',''),(2615,66,'_reasons_4_static','field_5ffca9f36c9c1'),(2616,66,'reasons_4_animate','0'),(2617,66,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(2618,66,'reasons_4_background_color','lightgray2'),(2619,66,'_reasons_4_background_color','field_5ffca2087dcc0'),(2620,66,'reasons_4_background_image',''),(2621,66,'_reasons_4_background_image','field_5ffca965f8d44'),(2622,66,'reasons_5_text','Reason'),(2623,66,'_reasons_5_text','field_5ffca05ea140c'),(2624,66,'reasons_5_number','6'),(2625,66,'_reasons_5_number','field_5ffca0a9a140d'),(2626,66,'reasons_5_title','More members means you pay less'),(2627,66,'_reasons_5_title','field_5ffca1c17dcbd'),(2628,66,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(2629,66,'_reasons_5_content','field_5ffca1d37dcbe'),(2630,66,'reasons_5_static',''),(2631,66,'_reasons_5_static','field_5ffca9f36c9c1'),(2632,66,'reasons_5_animate','0'),(2633,66,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(2634,66,'reasons_5_background_color','lightgray2'),(2635,66,'_reasons_5_background_color','field_5ffca2087dcc0'),(2636,66,'reasons_5_background_image',''),(2637,66,'_reasons_5_background_image','field_5ffca965f8d44'),(2638,66,'reasons_6_text','Reason'),(2639,66,'_reasons_6_text','field_5ffca05ea140c'),(2640,66,'reasons_6_number','7'),(2641,66,'_reasons_6_number','field_5ffca0a9a140d'),(2642,66,'reasons_6_title','Break your routine'),(2643,66,'_reasons_6_title','field_5ffca1c17dcbd'),(2644,66,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(2645,66,'_reasons_6_content','field_5ffca1d37dcbe'),(2646,66,'reasons_6_static',''),(2647,66,'_reasons_6_static','field_5ffca9f36c9c1'),(2648,66,'reasons_6_animate','0'),(2649,66,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(2650,66,'reasons_6_background_color','darkgray'),(2651,66,'_reasons_6_background_color','field_5ffca2087dcc0'),(2652,66,'reasons_6_background_image',''),(2653,66,'_reasons_6_background_image','field_5ffca965f8d44'),(2654,66,'reasons_7_text','Reason'),(2655,66,'_reasons_7_text','field_5ffca05ea140c'),(2656,66,'reasons_7_number','8'),(2657,66,'_reasons_7_number','field_5ffca0a9a140d'),(2658,66,'reasons_7_title','Your pace, your training'),(2659,66,'_reasons_7_title','field_5ffca1c17dcbd'),(2660,66,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(2661,66,'_reasons_7_content','field_5ffca1d37dcbe'),(2662,66,'reasons_7_static',''),(2663,66,'_reasons_7_static','field_5ffca9f36c9c1'),(2664,66,'reasons_7_animate','0'),(2665,66,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(2666,66,'reasons_7_background_color','white'),(2667,66,'_reasons_7_background_color','field_5ffca2087dcc0'),(2668,66,'reasons_7_background_image',''),(2669,66,'_reasons_7_background_image','field_5ffca965f8d44'),(2670,66,'reasons_8_text','Reason'),(2671,66,'_reasons_8_text','field_5ffca05ea140c'),(2672,66,'reasons_8_number','9'),(2673,66,'_reasons_8_number','field_5ffca0a9a140d'),(2674,66,'reasons_8_title','Expertly crafted workouts'),(2675,66,'_reasons_8_title','field_5ffca1c17dcbd'),(2676,66,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(2677,66,'_reasons_8_content','field_5ffca1d37dcbe'),(2678,66,'reasons_8_static',''),(2679,66,'_reasons_8_static','field_5ffca9f36c9c1'),(2680,66,'reasons_8_animate','0'),(2681,66,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(2682,66,'reasons_8_background_color','lightgray3'),(2683,66,'_reasons_8_background_color','field_5ffca2087dcc0'),(2684,66,'reasons_8_background_image',''),(2685,66,'_reasons_8_background_image','field_5ffca965f8d44'),(2686,66,'reasons_9_text','Reason'),(2687,66,'_reasons_9_text','field_5ffca05ea140c'),(2688,66,'reasons_9_number','10'),(2689,66,'_reasons_9_number','field_5ffca0a9a140d'),(2690,66,'reasons_9_title','Convenient class times'),(2691,66,'_reasons_9_title','field_5ffca1c17dcbd'),(2692,66,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(2693,66,'_reasons_9_content','field_5ffca1d37dcbe'),(2694,66,'reasons_9_static',''),(2695,66,'_reasons_9_static','field_5ffca9f36c9c1'),(2696,66,'reasons_9_animate','0'),(2697,66,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(2698,66,'reasons_9_background_color','darkgray'),(2699,66,'_reasons_9_background_color','field_5ffca2087dcc0'),(2700,66,'reasons_9_background_image',''),(2701,66,'_reasons_9_background_image','field_5ffca965f8d44'),(2702,66,'reasons','10'),(2703,66,'_reasons','field_5ffc9fa9a140a'),(2704,66,'reasons_1_second_image','59'),(2705,66,'_reasons_1_second_image','field_5ffcab35014a4'),(2706,66,'reasons_4_second_image',''),(2707,66,'_reasons_4_second_image','field_5ffcab35014a4'),(2708,66,'reasons_6_second_image',''),(2709,66,'_reasons_6_second_image','field_5ffcab35014a4'),(2710,66,'reasons_2_animated','61'),(2711,66,'_reasons_2_animated','field_5ffcaa376c9c3'),(2712,67,'_wp_attached_file','2021/01/hiflux.svg'),(2713,67,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:141;s:6:\"height\";i:34;s:4:\"file\";s:19:\"/2021/01/hiflux.svg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"banner-desktop\";a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"crop\";i:1;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:10:\"hiflux.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(2714,68,'title_gold','One Academy'),(2715,68,'_title_gold','field_5ffc850fff400'),(2716,68,'title_white','Virtual'),(2717,68,'_title_white','field_5ffc8523ff401'),(2718,68,'value','25'),(2719,68,'_value','field_5ffc87023f4a1'),(2720,68,'text_banner','1-Week Unlimited Virtual Classes'),(2721,68,'_text_banner','field_5ffc87313f4a2'),(2722,68,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(2723,68,'_link_button','field_5ffc87543f4a3'),(2724,68,'text_button_banner','Start Now'),(2725,68,'_text_button_banner','field_5ffc87833f4a4'),(2726,68,'text_button_scroll_top','Book Now'),(2727,68,'_text_button_scroll_top','field_5ffc87983f4a5'),(2728,68,'background_banner',''),(2729,68,'_background_banner','field_5ffc85ebcc1e9'),(2730,68,'static_image','52'),(2731,68,'_static_image','field_5ffc85fdcc1ea'),(2732,68,'animated','1'),(2733,68,'_animated','field_5ffc8668cc1eb'),(2734,68,'animated_image','52'),(2735,68,'_animated_image','field_5ffc8683cc1ec'),(2736,68,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(2737,68,'_title_reasons','field_5ffc9f7220389'),(2738,68,'reasons_0_text','Reason'),(2739,68,'_reasons_0_text','field_5ffca05ea140c'),(2740,68,'reasons_0_number','1'),(2741,68,'_reasons_0_number','field_5ffca0a9a140d'),(2742,68,'reasons_0_title','Get ready to turn your home into your new gym'),(2743,68,'_reasons_0_title','field_5ffca1c17dcbd'),(2744,68,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(2745,68,'_reasons_0_content','field_5ffca1d37dcbe'),(2746,68,'reasons_0_static','54'),(2747,68,'_reasons_0_static','field_5ffca9f36c9c1'),(2748,68,'reasons_0_animate','0'),(2749,68,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(2750,68,'reasons_0_background_color','lightgray2'),(2751,68,'_reasons_0_background_color','field_5ffca2087dcc0'),(2752,68,'reasons_0_background_image','56'),(2753,68,'_reasons_0_background_image','field_5ffca965f8d44'),(2754,68,'reasons_1_text','Reason'),(2755,68,'_reasons_1_text','field_5ffca05ea140c'),(2756,68,'reasons_1_number','2'),(2757,68,'_reasons_1_number','field_5ffca0a9a140d'),(2758,68,'reasons_1_title','Toronto’s best gym'),(2759,68,'_reasons_1_title','field_5ffca1c17dcbd'),(2760,68,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(2761,68,'_reasons_1_content','field_5ffca1d37dcbe'),(2762,68,'reasons_1_static','58'),(2763,68,'_reasons_1_static','field_5ffca9f36c9c1'),(2764,68,'reasons_1_animate','0'),(2765,68,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(2766,68,'reasons_1_background_color','darkgray'),(2767,68,'_reasons_1_background_color','field_5ffca2087dcc0'),(2768,68,'reasons_1_background_image',''),(2769,68,'_reasons_1_background_image','field_5ffca965f8d44'),(2770,68,'reasons_2_text','Reason'),(2771,68,'_reasons_2_text','field_5ffca05ea140c'),(2772,68,'reasons_2_number','3'),(2773,68,'_reasons_2_number','field_5ffca0a9a140d'),(2774,68,'reasons_2_title','Virtual classes with live coaches'),(2775,68,'_reasons_2_title','field_5ffca1c17dcbd'),(2776,68,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(2777,68,'_reasons_2_content','field_5ffca1d37dcbe'),(2778,68,'reasons_2_static','61'),(2779,68,'_reasons_2_static','field_5ffca9f36c9c1'),(2780,68,'reasons_2_animate','1'),(2781,68,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(2782,68,'reasons_2_background_color','white'),(2783,68,'_reasons_2_background_color','field_5ffca2087dcc0'),(2784,68,'reasons_2_background_image',''),(2785,68,'_reasons_2_background_image','field_5ffca965f8d44'),(2786,68,'reasons_3_text','Reason'),(2787,68,'_reasons_3_text','field_5ffca05ea140c'),(2788,68,'reasons_3_number','4'),(2789,68,'_reasons_3_number','field_5ffca0a9a140d'),(2790,68,'reasons_3_title','One community'),(2791,68,'_reasons_3_title','field_5ffca1c17dcbd'),(2792,68,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2793,68,'_reasons_3_content','field_5ffca1d37dcbe'),(2794,68,'reasons_3_static','64'),(2795,68,'_reasons_3_static','field_5ffca9f36c9c1'),(2796,68,'reasons_3_animate','0'),(2797,68,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(2798,68,'reasons_3_background_color','darkgray'),(2799,68,'_reasons_3_background_color','field_5ffca2087dcc0'),(2800,68,'reasons_3_background_image','65'),(2801,68,'_reasons_3_background_image','field_5ffca965f8d44'),(2802,68,'reasons_4_text','Reason'),(2803,68,'_reasons_4_text','field_5ffca05ea140c'),(2804,68,'reasons_4_number','5'),(2805,68,'_reasons_4_number','field_5ffca0a9a140d'),(2806,68,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(2807,68,'_reasons_4_title','field_5ffca1c17dcbd'),(2808,68,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(2809,68,'_reasons_4_content','field_5ffca1d37dcbe'),(2810,68,'reasons_4_static',''),(2811,68,'_reasons_4_static','field_5ffca9f36c9c1'),(2812,68,'reasons_4_animate','0'),(2813,68,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(2814,68,'reasons_4_background_color','lightgray2'),(2815,68,'_reasons_4_background_color','field_5ffca2087dcc0'),(2816,68,'reasons_4_background_image',''),(2817,68,'_reasons_4_background_image','field_5ffca965f8d44'),(2818,68,'reasons_5_text','Reason'),(2819,68,'_reasons_5_text','field_5ffca05ea140c'),(2820,68,'reasons_5_number','6'),(2821,68,'_reasons_5_number','field_5ffca0a9a140d'),(2822,68,'reasons_5_title','More members means you pay less'),(2823,68,'_reasons_5_title','field_5ffca1c17dcbd'),(2824,68,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(2825,68,'_reasons_5_content','field_5ffca1d37dcbe'),(2826,68,'reasons_5_static',''),(2827,68,'_reasons_5_static','field_5ffca9f36c9c1'),(2828,68,'reasons_5_animate','0'),(2829,68,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(2830,68,'reasons_5_background_color','lightgray2'),(2831,68,'_reasons_5_background_color','field_5ffca2087dcc0'),(2832,68,'reasons_5_background_image',''),(2833,68,'_reasons_5_background_image','field_5ffca965f8d44'),(2834,68,'reasons_6_text','Reason'),(2835,68,'_reasons_6_text','field_5ffca05ea140c'),(2836,68,'reasons_6_number','7'),(2837,68,'_reasons_6_number','field_5ffca0a9a140d'),(2838,68,'reasons_6_title','Break your routine'),(2839,68,'_reasons_6_title','field_5ffca1c17dcbd'),(2840,68,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(2841,68,'_reasons_6_content','field_5ffca1d37dcbe'),(2842,68,'reasons_6_static',''),(2843,68,'_reasons_6_static','field_5ffca9f36c9c1'),(2844,68,'reasons_6_animate','0'),(2845,68,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(2846,68,'reasons_6_background_color','darkgray'),(2847,68,'_reasons_6_background_color','field_5ffca2087dcc0'),(2848,68,'reasons_6_background_image',''),(2849,68,'_reasons_6_background_image','field_5ffca965f8d44'),(2850,68,'reasons_7_text','Reason'),(2851,68,'_reasons_7_text','field_5ffca05ea140c'),(2852,68,'reasons_7_number','8'),(2853,68,'_reasons_7_number','field_5ffca0a9a140d'),(2854,68,'reasons_7_title','Your pace, your training'),(2855,68,'_reasons_7_title','field_5ffca1c17dcbd'),(2856,68,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(2857,68,'_reasons_7_content','field_5ffca1d37dcbe'),(2858,68,'reasons_7_static',''),(2859,68,'_reasons_7_static','field_5ffca9f36c9c1'),(2860,68,'reasons_7_animate','0'),(2861,68,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(2862,68,'reasons_7_background_color','white'),(2863,68,'_reasons_7_background_color','field_5ffca2087dcc0'),(2864,68,'reasons_7_background_image',''),(2865,68,'_reasons_7_background_image','field_5ffca965f8d44'),(2866,68,'reasons_8_text','Reason'),(2867,68,'_reasons_8_text','field_5ffca05ea140c'),(2868,68,'reasons_8_number','9'),(2869,68,'_reasons_8_number','field_5ffca0a9a140d'),(2870,68,'reasons_8_title','Expertly crafted workouts'),(2871,68,'_reasons_8_title','field_5ffca1c17dcbd'),(2872,68,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(2873,68,'_reasons_8_content','field_5ffca1d37dcbe'),(2874,68,'reasons_8_static',''),(2875,68,'_reasons_8_static','field_5ffca9f36c9c1'),(2876,68,'reasons_8_animate','0'),(2877,68,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(2878,68,'reasons_8_background_color','lightgray3'),(2879,68,'_reasons_8_background_color','field_5ffca2087dcc0'),(2880,68,'reasons_8_background_image',''),(2881,68,'_reasons_8_background_image','field_5ffca965f8d44'),(2882,68,'reasons_9_text','Reason'),(2883,68,'_reasons_9_text','field_5ffca05ea140c'),(2884,68,'reasons_9_number','10'),(2885,68,'_reasons_9_number','field_5ffca0a9a140d'),(2886,68,'reasons_9_title','Convenient class times'),(2887,68,'_reasons_9_title','field_5ffca1c17dcbd'),(2888,68,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(2889,68,'_reasons_9_content','field_5ffca1d37dcbe'),(2890,68,'reasons_9_static',''),(2891,68,'_reasons_9_static','field_5ffca9f36c9c1'),(2892,68,'reasons_9_animate','0'),(2893,68,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(2894,68,'reasons_9_background_color','darkgray'),(2895,68,'_reasons_9_background_color','field_5ffca2087dcc0'),(2896,68,'reasons_9_background_image',''),(2897,68,'_reasons_9_background_image','field_5ffca965f8d44'),(2898,68,'reasons','10'),(2899,68,'_reasons','field_5ffc9fa9a140a'),(2900,68,'reasons_1_second_image','59'),(2901,68,'_reasons_1_second_image','field_5ffcab35014a4'),(2902,68,'reasons_4_second_image','67'),(2903,68,'_reasons_4_second_image','field_5ffcab35014a4'),(2904,68,'reasons_6_second_image',''),(2905,68,'_reasons_6_second_image','field_5ffcab35014a4'),(2906,68,'reasons_2_animated','61'),(2907,68,'_reasons_2_animated','field_5ffcaa376c9c3'),(2908,69,'_wp_attached_file','2021/01/reason05.png'),(2909,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2021/01/reason05.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason05-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason05-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"reason05-800x655.png\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason05-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason05-800x940.png\";s:5:\"width\";i:800;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2910,70,'_wp_attached_file','2021/01/reason06.png'),(2911,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1750;s:6:\"height\";i:1750;s:4:\"file\";s:20:\"2021/01/reason06.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason06-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"reason06-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason06-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"reason06-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"reason06-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"banner-desktop\";a:4:{s:4:\"file\";s:22:\"reason06-1750x1080.png\";s:5:\"width\";i:1750;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason06-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason06-880x940.png\";s:5:\"width\";i:880;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2912,5,'reasons_4_background_image_static','69'),(2913,5,'_reasons_4_background_image_static','field_5ffca843bd901'),(2914,5,'reasons_4_background_image_animated','84'),(2915,5,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(2916,5,'reasons_5_background_image_static','70'),(2917,5,'_reasons_5_background_image_static','field_5ffca843bd901'),(2918,5,'reasons_5_background_image_animated','140'),(2919,5,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(2920,71,'title_gold','One Academy'),(2921,71,'_title_gold','field_5ffc850fff400'),(2922,71,'title_white','Virtual'),(2923,71,'_title_white','field_5ffc8523ff401'),(2924,71,'value','25'),(2925,71,'_value','field_5ffc87023f4a1'),(2926,71,'text_banner','1-Week Unlimited Virtual Classes'),(2927,71,'_text_banner','field_5ffc87313f4a2'),(2928,71,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(2929,71,'_link_button','field_5ffc87543f4a3'),(2930,71,'text_button_banner','Start Now'),(2931,71,'_text_button_banner','field_5ffc87833f4a4'),(2932,71,'text_button_scroll_top','Book Now'),(2933,71,'_text_button_scroll_top','field_5ffc87983f4a5'),(2934,71,'background_banner',''),(2935,71,'_background_banner','field_5ffc85ebcc1e9'),(2936,71,'static_image','52'),(2937,71,'_static_image','field_5ffc85fdcc1ea'),(2938,71,'animated','1'),(2939,71,'_animated','field_5ffc8668cc1eb'),(2940,71,'animated_image','52'),(2941,71,'_animated_image','field_5ffc8683cc1ec'),(2942,71,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(2943,71,'_title_reasons','field_5ffc9f7220389'),(2944,71,'reasons_0_text','Reason'),(2945,71,'_reasons_0_text','field_5ffca05ea140c'),(2946,71,'reasons_0_number','1'),(2947,71,'_reasons_0_number','field_5ffca0a9a140d'),(2948,71,'reasons_0_title','Get ready to turn your home into your new gym'),(2949,71,'_reasons_0_title','field_5ffca1c17dcbd'),(2950,71,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(2951,71,'_reasons_0_content','field_5ffca1d37dcbe'),(2952,71,'reasons_0_static','54'),(2953,71,'_reasons_0_static','field_5ffca9f36c9c1'),(2954,71,'reasons_0_animate','0'),(2955,71,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(2956,71,'reasons_0_background_color','lightgray2'),(2957,71,'_reasons_0_background_color','field_5ffca2087dcc0'),(2958,71,'reasons_0_background_image','56'),(2959,71,'_reasons_0_background_image','field_5ffca965f8d44'),(2960,71,'reasons_1_text','Reason'),(2961,71,'_reasons_1_text','field_5ffca05ea140c'),(2962,71,'reasons_1_number','2'),(2963,71,'_reasons_1_number','field_5ffca0a9a140d'),(2964,71,'reasons_1_title','Toronto’s best gym'),(2965,71,'_reasons_1_title','field_5ffca1c17dcbd'),(2966,71,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(2967,71,'_reasons_1_content','field_5ffca1d37dcbe'),(2968,71,'reasons_1_static','58'),(2969,71,'_reasons_1_static','field_5ffca9f36c9c1'),(2970,71,'reasons_1_animate','0'),(2971,71,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(2972,71,'reasons_1_background_color','darkgray'),(2973,71,'_reasons_1_background_color','field_5ffca2087dcc0'),(2974,71,'reasons_1_background_image',''),(2975,71,'_reasons_1_background_image','field_5ffca965f8d44'),(2976,71,'reasons_2_text','Reason'),(2977,71,'_reasons_2_text','field_5ffca05ea140c'),(2978,71,'reasons_2_number','3'),(2979,71,'_reasons_2_number','field_5ffca0a9a140d'),(2980,71,'reasons_2_title','Virtual classes with live coaches'),(2981,71,'_reasons_2_title','field_5ffca1c17dcbd'),(2982,71,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(2983,71,'_reasons_2_content','field_5ffca1d37dcbe'),(2984,71,'reasons_2_static','61'),(2985,71,'_reasons_2_static','field_5ffca9f36c9c1'),(2986,71,'reasons_2_animate','1'),(2987,71,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(2988,71,'reasons_2_background_color','white'),(2989,71,'_reasons_2_background_color','field_5ffca2087dcc0'),(2990,71,'reasons_2_background_image',''),(2991,71,'_reasons_2_background_image','field_5ffca965f8d44'),(2992,71,'reasons_3_text','Reason'),(2993,71,'_reasons_3_text','field_5ffca05ea140c'),(2994,71,'reasons_3_number','4'),(2995,71,'_reasons_3_number','field_5ffca0a9a140d'),(2996,71,'reasons_3_title','One community'),(2997,71,'_reasons_3_title','field_5ffca1c17dcbd'),(2998,71,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(2999,71,'_reasons_3_content','field_5ffca1d37dcbe'),(3000,71,'reasons_3_static','64'),(3001,71,'_reasons_3_static','field_5ffca9f36c9c1'),(3002,71,'reasons_3_animate','0'),(3003,71,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(3004,71,'reasons_3_background_color','darkgray'),(3005,71,'_reasons_3_background_color','field_5ffca2087dcc0'),(3006,71,'reasons_3_background_image','65'),(3007,71,'_reasons_3_background_image','field_5ffca965f8d44'),(3008,71,'reasons_4_text','Reason'),(3009,71,'_reasons_4_text','field_5ffca05ea140c'),(3010,71,'reasons_4_number','5'),(3011,71,'_reasons_4_number','field_5ffca0a9a140d'),(3012,71,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(3013,71,'_reasons_4_title','field_5ffca1c17dcbd'),(3014,71,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(3015,71,'_reasons_4_content','field_5ffca1d37dcbe'),(3016,71,'reasons_4_static',''),(3017,71,'_reasons_4_static','field_5ffca9f36c9c1'),(3018,71,'reasons_4_animate','0'),(3019,71,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(3020,71,'reasons_4_background_color','video'),(3021,71,'_reasons_4_background_color','field_5ffca2087dcc0'),(3022,71,'reasons_4_background_image',''),(3023,71,'_reasons_4_background_image','field_5ffca965f8d44'),(3024,71,'reasons_5_text','Reason'),(3025,71,'_reasons_5_text','field_5ffca05ea140c'),(3026,71,'reasons_5_number','6'),(3027,71,'_reasons_5_number','field_5ffca0a9a140d'),(3028,71,'reasons_5_title','More members means you pay less'),(3029,71,'_reasons_5_title','field_5ffca1c17dcbd'),(3030,71,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(3031,71,'_reasons_5_content','field_5ffca1d37dcbe'),(3032,71,'reasons_5_static',''),(3033,71,'_reasons_5_static','field_5ffca9f36c9c1'),(3034,71,'reasons_5_animate','0'),(3035,71,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(3036,71,'reasons_5_background_color','video'),(3037,71,'_reasons_5_background_color','field_5ffca2087dcc0'),(3038,71,'reasons_5_background_image',''),(3039,71,'_reasons_5_background_image','field_5ffca965f8d44'),(3040,71,'reasons_6_text','Reason'),(3041,71,'_reasons_6_text','field_5ffca05ea140c'),(3042,71,'reasons_6_number','7'),(3043,71,'_reasons_6_number','field_5ffca0a9a140d'),(3044,71,'reasons_6_title','Break your routine'),(3045,71,'_reasons_6_title','field_5ffca1c17dcbd'),(3046,71,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(3047,71,'_reasons_6_content','field_5ffca1d37dcbe'),(3048,71,'reasons_6_static',''),(3049,71,'_reasons_6_static','field_5ffca9f36c9c1'),(3050,71,'reasons_6_animate','0'),(3051,71,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(3052,71,'reasons_6_background_color','darkgray'),(3053,71,'_reasons_6_background_color','field_5ffca2087dcc0'),(3054,71,'reasons_6_background_image',''),(3055,71,'_reasons_6_background_image','field_5ffca965f8d44'),(3056,71,'reasons_7_text','Reason'),(3057,71,'_reasons_7_text','field_5ffca05ea140c'),(3058,71,'reasons_7_number','8'),(3059,71,'_reasons_7_number','field_5ffca0a9a140d'),(3060,71,'reasons_7_title','Your pace, your training'),(3061,71,'_reasons_7_title','field_5ffca1c17dcbd'),(3062,71,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(3063,71,'_reasons_7_content','field_5ffca1d37dcbe'),(3064,71,'reasons_7_static',''),(3065,71,'_reasons_7_static','field_5ffca9f36c9c1'),(3066,71,'reasons_7_animate','0'),(3067,71,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(3068,71,'reasons_7_background_color','white'),(3069,71,'_reasons_7_background_color','field_5ffca2087dcc0'),(3070,71,'reasons_7_background_image',''),(3071,71,'_reasons_7_background_image','field_5ffca965f8d44'),(3072,71,'reasons_8_text','Reason'),(3073,71,'_reasons_8_text','field_5ffca05ea140c'),(3074,71,'reasons_8_number','9'),(3075,71,'_reasons_8_number','field_5ffca0a9a140d'),(3076,71,'reasons_8_title','Expertly crafted workouts'),(3077,71,'_reasons_8_title','field_5ffca1c17dcbd'),(3078,71,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(3079,71,'_reasons_8_content','field_5ffca1d37dcbe'),(3080,71,'reasons_8_static',''),(3081,71,'_reasons_8_static','field_5ffca9f36c9c1'),(3082,71,'reasons_8_animate','0'),(3083,71,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(3084,71,'reasons_8_background_color','lightgray3'),(3085,71,'_reasons_8_background_color','field_5ffca2087dcc0'),(3086,71,'reasons_8_background_image',''),(3087,71,'_reasons_8_background_image','field_5ffca965f8d44'),(3088,71,'reasons_9_text','Reason'),(3089,71,'_reasons_9_text','field_5ffca05ea140c'),(3090,71,'reasons_9_number','10'),(3091,71,'_reasons_9_number','field_5ffca0a9a140d'),(3092,71,'reasons_9_title','Convenient class times'),(3093,71,'_reasons_9_title','field_5ffca1c17dcbd'),(3094,71,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(3095,71,'_reasons_9_content','field_5ffca1d37dcbe'),(3096,71,'reasons_9_static',''),(3097,71,'_reasons_9_static','field_5ffca9f36c9c1'),(3098,71,'reasons_9_animate','0'),(3099,71,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(3100,71,'reasons_9_background_color','darkgray'),(3101,71,'_reasons_9_background_color','field_5ffca2087dcc0'),(3102,71,'reasons_9_background_image',''),(3103,71,'_reasons_9_background_image','field_5ffca965f8d44'),(3104,71,'reasons','10'),(3105,71,'_reasons','field_5ffc9fa9a140a'),(3106,71,'reasons_1_second_image','59'),(3107,71,'_reasons_1_second_image','field_5ffcab35014a4'),(3108,71,'reasons_4_second_image','67'),(3109,71,'_reasons_4_second_image','field_5ffcab35014a4'),(3110,71,'reasons_6_second_image',''),(3111,71,'_reasons_6_second_image','field_5ffcab35014a4'),(3112,71,'reasons_2_animated','61'),(3113,71,'_reasons_2_animated','field_5ffcaa376c9c3'),(3114,71,'reasons_4_background_image_static','69'),(3115,71,'_reasons_4_background_image_static','field_5ffca843bd901'),(3116,71,'reasons_4_background_image_animated','69'),(3117,71,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(3118,71,'reasons_5_background_image_static','70'),(3119,71,'_reasons_5_background_image_static','field_5ffca843bd901'),(3120,71,'reasons_5_background_image_animated','70'),(3121,71,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(3122,72,'_wp_attached_file','2021/01/reason07-2.png'),(3123,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:314;s:6:\"height\";i:546;s:4:\"file\";s:22:\"2021/01/reason07-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"reason07-2-173x300.png\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"reason07-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3124,73,'title_gold','One Academy'),(3125,73,'_title_gold','field_5ffc850fff400'),(3126,73,'title_white','Virtual'),(3127,73,'_title_white','field_5ffc8523ff401'),(3128,73,'value','25'),(3129,73,'_value','field_5ffc87023f4a1'),(3130,73,'text_banner','1-Week Unlimited Virtual Classes'),(3131,73,'_text_banner','field_5ffc87313f4a2'),(3132,73,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(3133,73,'_link_button','field_5ffc87543f4a3'),(3134,73,'text_button_banner','Start Now'),(3135,73,'_text_button_banner','field_5ffc87833f4a4'),(3136,73,'text_button_scroll_top','Book Now'),(3137,73,'_text_button_scroll_top','field_5ffc87983f4a5'),(3138,73,'background_banner',''),(3139,73,'_background_banner','field_5ffc85ebcc1e9'),(3140,73,'static_image','52'),(3141,73,'_static_image','field_5ffc85fdcc1ea'),(3142,73,'animated','1'),(3143,73,'_animated','field_5ffc8668cc1eb'),(3144,73,'animated_image','52'),(3145,73,'_animated_image','field_5ffc8683cc1ec'),(3146,73,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(3147,73,'_title_reasons','field_5ffc9f7220389'),(3148,73,'reasons_0_text','Reason'),(3149,73,'_reasons_0_text','field_5ffca05ea140c'),(3150,73,'reasons_0_number','1'),(3151,73,'_reasons_0_number','field_5ffca0a9a140d'),(3152,73,'reasons_0_title','Get ready to turn your home into your new gym'),(3153,73,'_reasons_0_title','field_5ffca1c17dcbd'),(3154,73,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(3155,73,'_reasons_0_content','field_5ffca1d37dcbe'),(3156,73,'reasons_0_static','54'),(3157,73,'_reasons_0_static','field_5ffca9f36c9c1'),(3158,73,'reasons_0_animate','0'),(3159,73,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(3160,73,'reasons_0_background_color','lightgray2'),(3161,73,'_reasons_0_background_color','field_5ffca2087dcc0'),(3162,73,'reasons_0_background_image','56'),(3163,73,'_reasons_0_background_image','field_5ffca965f8d44'),(3164,73,'reasons_1_text','Reason'),(3165,73,'_reasons_1_text','field_5ffca05ea140c'),(3166,73,'reasons_1_number','2'),(3167,73,'_reasons_1_number','field_5ffca0a9a140d'),(3168,73,'reasons_1_title','Toronto’s best gym'),(3169,73,'_reasons_1_title','field_5ffca1c17dcbd'),(3170,73,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(3171,73,'_reasons_1_content','field_5ffca1d37dcbe'),(3172,73,'reasons_1_static','58'),(3173,73,'_reasons_1_static','field_5ffca9f36c9c1'),(3174,73,'reasons_1_animate','0'),(3175,73,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(3176,73,'reasons_1_background_color','darkgray'),(3177,73,'_reasons_1_background_color','field_5ffca2087dcc0'),(3178,73,'reasons_1_background_image',''),(3179,73,'_reasons_1_background_image','field_5ffca965f8d44'),(3180,73,'reasons_2_text','Reason'),(3181,73,'_reasons_2_text','field_5ffca05ea140c'),(3182,73,'reasons_2_number','3'),(3183,73,'_reasons_2_number','field_5ffca0a9a140d'),(3184,73,'reasons_2_title','Virtual classes with live coaches'),(3185,73,'_reasons_2_title','field_5ffca1c17dcbd'),(3186,73,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(3187,73,'_reasons_2_content','field_5ffca1d37dcbe'),(3188,73,'reasons_2_static','61'),(3189,73,'_reasons_2_static','field_5ffca9f36c9c1'),(3190,73,'reasons_2_animate','1'),(3191,73,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(3192,73,'reasons_2_background_color','white'),(3193,73,'_reasons_2_background_color','field_5ffca2087dcc0'),(3194,73,'reasons_2_background_image',''),(3195,73,'_reasons_2_background_image','field_5ffca965f8d44'),(3196,73,'reasons_3_text','Reason'),(3197,73,'_reasons_3_text','field_5ffca05ea140c'),(3198,73,'reasons_3_number','4'),(3199,73,'_reasons_3_number','field_5ffca0a9a140d'),(3200,73,'reasons_3_title','One community'),(3201,73,'_reasons_3_title','field_5ffca1c17dcbd'),(3202,73,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(3203,73,'_reasons_3_content','field_5ffca1d37dcbe'),(3204,73,'reasons_3_static','64'),(3205,73,'_reasons_3_static','field_5ffca9f36c9c1'),(3206,73,'reasons_3_animate','0'),(3207,73,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(3208,73,'reasons_3_background_color','darkgray'),(3209,73,'_reasons_3_background_color','field_5ffca2087dcc0'),(3210,73,'reasons_3_background_image','65'),(3211,73,'_reasons_3_background_image','field_5ffca965f8d44'),(3212,73,'reasons_4_text','Reason'),(3213,73,'_reasons_4_text','field_5ffca05ea140c'),(3214,73,'reasons_4_number','5'),(3215,73,'_reasons_4_number','field_5ffca0a9a140d'),(3216,73,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(3217,73,'_reasons_4_title','field_5ffca1c17dcbd'),(3218,73,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(3219,73,'_reasons_4_content','field_5ffca1d37dcbe'),(3220,73,'reasons_4_static',''),(3221,73,'_reasons_4_static','field_5ffca9f36c9c1'),(3222,73,'reasons_4_animate','0'),(3223,73,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(3224,73,'reasons_4_background_color','video'),(3225,73,'_reasons_4_background_color','field_5ffca2087dcc0'),(3226,73,'reasons_4_background_image',''),(3227,73,'_reasons_4_background_image','field_5ffca965f8d44'),(3228,73,'reasons_5_text','Reason'),(3229,73,'_reasons_5_text','field_5ffca05ea140c'),(3230,73,'reasons_5_number','6'),(3231,73,'_reasons_5_number','field_5ffca0a9a140d'),(3232,73,'reasons_5_title','More members means you pay less'),(3233,73,'_reasons_5_title','field_5ffca1c17dcbd'),(3234,73,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(3235,73,'_reasons_5_content','field_5ffca1d37dcbe'),(3236,73,'reasons_5_static',''),(3237,73,'_reasons_5_static','field_5ffca9f36c9c1'),(3238,73,'reasons_5_animate','0'),(3239,73,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(3240,73,'reasons_5_background_color','video'),(3241,73,'_reasons_5_background_color','field_5ffca2087dcc0'),(3242,73,'reasons_5_background_image',''),(3243,73,'_reasons_5_background_image','field_5ffca965f8d44'),(3244,73,'reasons_6_text','Reason'),(3245,73,'_reasons_6_text','field_5ffca05ea140c'),(3246,73,'reasons_6_number','7'),(3247,73,'_reasons_6_number','field_5ffca0a9a140d'),(3248,73,'reasons_6_title','Break your routine'),(3249,73,'_reasons_6_title','field_5ffca1c17dcbd'),(3250,73,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(3251,73,'_reasons_6_content','field_5ffca1d37dcbe'),(3252,73,'reasons_6_static',''),(3253,73,'_reasons_6_static','field_5ffca9f36c9c1'),(3254,73,'reasons_6_animate','0'),(3255,73,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(3256,73,'reasons_6_background_color','darkgray'),(3257,73,'_reasons_6_background_color','field_5ffca2087dcc0'),(3258,73,'reasons_6_background_image',''),(3259,73,'_reasons_6_background_image','field_5ffca965f8d44'),(3260,73,'reasons_7_text','Reason'),(3261,73,'_reasons_7_text','field_5ffca05ea140c'),(3262,73,'reasons_7_number','8'),(3263,73,'_reasons_7_number','field_5ffca0a9a140d'),(3264,73,'reasons_7_title','Your pace, your training'),(3265,73,'_reasons_7_title','field_5ffca1c17dcbd'),(3266,73,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(3267,73,'_reasons_7_content','field_5ffca1d37dcbe'),(3268,73,'reasons_7_static',''),(3269,73,'_reasons_7_static','field_5ffca9f36c9c1'),(3270,73,'reasons_7_animate','0'),(3271,73,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(3272,73,'reasons_7_background_color','white'),(3273,73,'_reasons_7_background_color','field_5ffca2087dcc0'),(3274,73,'reasons_7_background_image',''),(3275,73,'_reasons_7_background_image','field_5ffca965f8d44'),(3276,73,'reasons_8_text','Reason'),(3277,73,'_reasons_8_text','field_5ffca05ea140c'),(3278,73,'reasons_8_number','9'),(3279,73,'_reasons_8_number','field_5ffca0a9a140d'),(3280,73,'reasons_8_title','Expertly crafted workouts'),(3281,73,'_reasons_8_title','field_5ffca1c17dcbd'),(3282,73,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(3283,73,'_reasons_8_content','field_5ffca1d37dcbe'),(3284,73,'reasons_8_static',''),(3285,73,'_reasons_8_static','field_5ffca9f36c9c1'),(3286,73,'reasons_8_animate','0'),(3287,73,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(3288,73,'reasons_8_background_color','lightgray3'),(3289,73,'_reasons_8_background_color','field_5ffca2087dcc0'),(3290,73,'reasons_8_background_image',''),(3291,73,'_reasons_8_background_image','field_5ffca965f8d44'),(3292,73,'reasons_9_text','Reason'),(3293,73,'_reasons_9_text','field_5ffca05ea140c'),(3294,73,'reasons_9_number','10'),(3295,73,'_reasons_9_number','field_5ffca0a9a140d'),(3296,73,'reasons_9_title','Convenient class times'),(3297,73,'_reasons_9_title','field_5ffca1c17dcbd'),(3298,73,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(3299,73,'_reasons_9_content','field_5ffca1d37dcbe'),(3300,73,'reasons_9_static',''),(3301,73,'_reasons_9_static','field_5ffca9f36c9c1'),(3302,73,'reasons_9_animate','0'),(3303,73,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(3304,73,'reasons_9_background_color','darkgray'),(3305,73,'_reasons_9_background_color','field_5ffca2087dcc0'),(3306,73,'reasons_9_background_image',''),(3307,73,'_reasons_9_background_image','field_5ffca965f8d44'),(3308,73,'reasons','10'),(3309,73,'_reasons','field_5ffc9fa9a140a'),(3310,73,'reasons_1_second_image','59'),(3311,73,'_reasons_1_second_image','field_5ffcab35014a4'),(3312,73,'reasons_4_second_image','67'),(3313,73,'_reasons_4_second_image','field_5ffcab35014a4'),(3314,73,'reasons_6_second_image','72'),(3315,73,'_reasons_6_second_image','field_5ffcab35014a4'),(3316,73,'reasons_2_animated','61'),(3317,73,'_reasons_2_animated','field_5ffcaa376c9c3'),(3318,73,'reasons_4_background_image_static','69'),(3319,73,'_reasons_4_background_image_static','field_5ffca843bd901'),(3320,73,'reasons_4_background_image_animated','69'),(3321,73,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(3322,73,'reasons_5_background_image_static','70'),(3323,73,'_reasons_5_background_image_static','field_5ffca843bd901'),(3324,73,'reasons_5_background_image_animated','70'),(3325,73,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(3326,74,'_wp_attached_file','2021/01/reason08.png'),(3327,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1166;s:6:\"height\";i:732;s:4:\"file\";s:20:\"2021/01/reason08.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason08-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"reason08-1024x643.png\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason08-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason08-768x482.png\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"reason08-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason08-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason08-880x732.png\";s:5:\"width\";i:880;s:6:\"height\";i:732;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3328,75,'_wp_attached_file','2021/01/reason09.png'),(3329,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1132;s:6:\"height\";i:654;s:4:\"file\";s:20:\"2021/01/reason09.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason09-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"reason09-1024x592.png\";s:5:\"width\";i:1024;s:6:\"height\";i:592;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason09-768x444.png\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"reason09-1060x654.png\";s:5:\"width\";i:1060;s:6:\"height\";i:654;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason09-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason09-880x654.png\";s:5:\"width\";i:880;s:6:\"height\";i:654;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3330,76,'_wp_attached_file','2021/01/reason10.png'),(3331,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:662;s:4:\"file\";s:20:\"2021/01/reason10.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason10-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason10-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:\"reason10-550x655.png\";s:5:\"width\";i:550;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason10-550x554.png\";s:5:\"width\";i:550;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3332,77,'title_gold','One Academy'),(3333,77,'_title_gold','field_5ffc850fff400'),(3334,77,'title_white','Virtual'),(3335,77,'_title_white','field_5ffc8523ff401'),(3336,77,'value','25'),(3337,77,'_value','field_5ffc87023f4a1'),(3338,77,'text_banner','1-Week Unlimited Virtual Classes'),(3339,77,'_text_banner','field_5ffc87313f4a2'),(3340,77,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(3341,77,'_link_button','field_5ffc87543f4a3'),(3342,77,'text_button_banner','Start Now'),(3343,77,'_text_button_banner','field_5ffc87833f4a4'),(3344,77,'text_button_scroll_top','Book Now'),(3345,77,'_text_button_scroll_top','field_5ffc87983f4a5'),(3346,77,'background_banner',''),(3347,77,'_background_banner','field_5ffc85ebcc1e9'),(3348,77,'static_image','52'),(3349,77,'_static_image','field_5ffc85fdcc1ea'),(3350,77,'animated','1'),(3351,77,'_animated','field_5ffc8668cc1eb'),(3352,77,'animated_image','52'),(3353,77,'_animated_image','field_5ffc8683cc1ec'),(3354,77,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(3355,77,'_title_reasons','field_5ffc9f7220389'),(3356,77,'reasons_0_text','Reason'),(3357,77,'_reasons_0_text','field_5ffca05ea140c'),(3358,77,'reasons_0_number','1'),(3359,77,'_reasons_0_number','field_5ffca0a9a140d'),(3360,77,'reasons_0_title','Get ready to turn your home into your new gym'),(3361,77,'_reasons_0_title','field_5ffca1c17dcbd'),(3362,77,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(3363,77,'_reasons_0_content','field_5ffca1d37dcbe'),(3364,77,'reasons_0_static','54'),(3365,77,'_reasons_0_static','field_5ffca9f36c9c1'),(3366,77,'reasons_0_animate','0'),(3367,77,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(3368,77,'reasons_0_background_color','lightgray2'),(3369,77,'_reasons_0_background_color','field_5ffca2087dcc0'),(3370,77,'reasons_0_background_image','56'),(3371,77,'_reasons_0_background_image','field_5ffca965f8d44'),(3372,77,'reasons_1_text','Reason'),(3373,77,'_reasons_1_text','field_5ffca05ea140c'),(3374,77,'reasons_1_number','2'),(3375,77,'_reasons_1_number','field_5ffca0a9a140d'),(3376,77,'reasons_1_title','Toronto’s best gym'),(3377,77,'_reasons_1_title','field_5ffca1c17dcbd'),(3378,77,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(3379,77,'_reasons_1_content','field_5ffca1d37dcbe'),(3380,77,'reasons_1_static','58'),(3381,77,'_reasons_1_static','field_5ffca9f36c9c1'),(3382,77,'reasons_1_animate','0'),(3383,77,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(3384,77,'reasons_1_background_color','darkgray'),(3385,77,'_reasons_1_background_color','field_5ffca2087dcc0'),(3386,77,'reasons_1_background_image',''),(3387,77,'_reasons_1_background_image','field_5ffca965f8d44'),(3388,77,'reasons_2_text','Reason'),(3389,77,'_reasons_2_text','field_5ffca05ea140c'),(3390,77,'reasons_2_number','3'),(3391,77,'_reasons_2_number','field_5ffca0a9a140d'),(3392,77,'reasons_2_title','Virtual classes with live coaches'),(3393,77,'_reasons_2_title','field_5ffca1c17dcbd'),(3394,77,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(3395,77,'_reasons_2_content','field_5ffca1d37dcbe'),(3396,77,'reasons_2_static','61'),(3397,77,'_reasons_2_static','field_5ffca9f36c9c1'),(3398,77,'reasons_2_animate','1'),(3399,77,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(3400,77,'reasons_2_background_color','white'),(3401,77,'_reasons_2_background_color','field_5ffca2087dcc0'),(3402,77,'reasons_2_background_image',''),(3403,77,'_reasons_2_background_image','field_5ffca965f8d44'),(3404,77,'reasons_3_text','Reason'),(3405,77,'_reasons_3_text','field_5ffca05ea140c'),(3406,77,'reasons_3_number','4'),(3407,77,'_reasons_3_number','field_5ffca0a9a140d'),(3408,77,'reasons_3_title','One community'),(3409,77,'_reasons_3_title','field_5ffca1c17dcbd'),(3410,77,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(3411,77,'_reasons_3_content','field_5ffca1d37dcbe'),(3412,77,'reasons_3_static','64'),(3413,77,'_reasons_3_static','field_5ffca9f36c9c1'),(3414,77,'reasons_3_animate','0'),(3415,77,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(3416,77,'reasons_3_background_color','darkgray'),(3417,77,'_reasons_3_background_color','field_5ffca2087dcc0'),(3418,77,'reasons_3_background_image','65'),(3419,77,'_reasons_3_background_image','field_5ffca965f8d44'),(3420,77,'reasons_4_text','Reason'),(3421,77,'_reasons_4_text','field_5ffca05ea140c'),(3422,77,'reasons_4_number','5'),(3423,77,'_reasons_4_number','field_5ffca0a9a140d'),(3424,77,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(3425,77,'_reasons_4_title','field_5ffca1c17dcbd'),(3426,77,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(3427,77,'_reasons_4_content','field_5ffca1d37dcbe'),(3428,77,'reasons_4_static',''),(3429,77,'_reasons_4_static','field_5ffca9f36c9c1'),(3430,77,'reasons_4_animate','0'),(3431,77,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(3432,77,'reasons_4_background_color','video'),(3433,77,'_reasons_4_background_color','field_5ffca2087dcc0'),(3434,77,'reasons_4_background_image',''),(3435,77,'_reasons_4_background_image','field_5ffca965f8d44'),(3436,77,'reasons_5_text','Reason'),(3437,77,'_reasons_5_text','field_5ffca05ea140c'),(3438,77,'reasons_5_number','6'),(3439,77,'_reasons_5_number','field_5ffca0a9a140d'),(3440,77,'reasons_5_title','More members means you pay less'),(3441,77,'_reasons_5_title','field_5ffca1c17dcbd'),(3442,77,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(3443,77,'_reasons_5_content','field_5ffca1d37dcbe'),(3444,77,'reasons_5_static',''),(3445,77,'_reasons_5_static','field_5ffca9f36c9c1'),(3446,77,'reasons_5_animate','0'),(3447,77,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(3448,77,'reasons_5_background_color','video'),(3449,77,'_reasons_5_background_color','field_5ffca2087dcc0'),(3450,77,'reasons_5_background_image',''),(3451,77,'_reasons_5_background_image','field_5ffca965f8d44'),(3452,77,'reasons_6_text','Reason'),(3453,77,'_reasons_6_text','field_5ffca05ea140c'),(3454,77,'reasons_6_number','7'),(3455,77,'_reasons_6_number','field_5ffca0a9a140d'),(3456,77,'reasons_6_title','Break your routine'),(3457,77,'_reasons_6_title','field_5ffca1c17dcbd'),(3458,77,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(3459,77,'_reasons_6_content','field_5ffca1d37dcbe'),(3460,77,'reasons_6_static',''),(3461,77,'_reasons_6_static','field_5ffca9f36c9c1'),(3462,77,'reasons_6_animate','0'),(3463,77,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(3464,77,'reasons_6_background_color','darkgray'),(3465,77,'_reasons_6_background_color','field_5ffca2087dcc0'),(3466,77,'reasons_6_background_image',''),(3467,77,'_reasons_6_background_image','field_5ffca965f8d44'),(3468,77,'reasons_7_text','Reason'),(3469,77,'_reasons_7_text','field_5ffca05ea140c'),(3470,77,'reasons_7_number','8'),(3471,77,'_reasons_7_number','field_5ffca0a9a140d'),(3472,77,'reasons_7_title','Your pace, your training'),(3473,77,'_reasons_7_title','field_5ffca1c17dcbd'),(3474,77,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(3475,77,'_reasons_7_content','field_5ffca1d37dcbe'),(3476,77,'reasons_7_static','74'),(3477,77,'_reasons_7_static','field_5ffca9f36c9c1'),(3478,77,'reasons_7_animate','0'),(3479,77,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(3480,77,'reasons_7_background_color','white'),(3481,77,'_reasons_7_background_color','field_5ffca2087dcc0'),(3482,77,'reasons_7_background_image',''),(3483,77,'_reasons_7_background_image','field_5ffca965f8d44'),(3484,77,'reasons_8_text','Reason'),(3485,77,'_reasons_8_text','field_5ffca05ea140c'),(3486,77,'reasons_8_number','9'),(3487,77,'_reasons_8_number','field_5ffca0a9a140d'),(3488,77,'reasons_8_title','Expertly crafted workouts'),(3489,77,'_reasons_8_title','field_5ffca1c17dcbd'),(3490,77,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(3491,77,'_reasons_8_content','field_5ffca1d37dcbe'),(3492,77,'reasons_8_static','75'),(3493,77,'_reasons_8_static','field_5ffca9f36c9c1'),(3494,77,'reasons_8_animate','0'),(3495,77,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(3496,77,'reasons_8_background_color','lightgray3'),(3497,77,'_reasons_8_background_color','field_5ffca2087dcc0'),(3498,77,'reasons_8_background_image',''),(3499,77,'_reasons_8_background_image','field_5ffca965f8d44'),(3500,77,'reasons_9_text','Reason'),(3501,77,'_reasons_9_text','field_5ffca05ea140c'),(3502,77,'reasons_9_number','10'),(3503,77,'_reasons_9_number','field_5ffca0a9a140d'),(3504,77,'reasons_9_title','Convenient class times'),(3505,77,'_reasons_9_title','field_5ffca1c17dcbd'),(3506,77,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(3507,77,'_reasons_9_content','field_5ffca1d37dcbe'),(3508,77,'reasons_9_static','76'),(3509,77,'_reasons_9_static','field_5ffca9f36c9c1'),(3510,77,'reasons_9_animate','0'),(3511,77,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(3512,77,'reasons_9_background_color','darkgray'),(3513,77,'_reasons_9_background_color','field_5ffca2087dcc0'),(3514,77,'reasons_9_background_image',''),(3515,77,'_reasons_9_background_image','field_5ffca965f8d44'),(3516,77,'reasons','10'),(3517,77,'_reasons','field_5ffc9fa9a140a'),(3518,77,'reasons_1_second_image','59'),(3519,77,'_reasons_1_second_image','field_5ffcab35014a4'),(3520,77,'reasons_4_second_image','67'),(3521,77,'_reasons_4_second_image','field_5ffcab35014a4'),(3522,77,'reasons_6_second_image','72'),(3523,77,'_reasons_6_second_image','field_5ffcab35014a4'),(3524,77,'reasons_2_animated','61'),(3525,77,'_reasons_2_animated','field_5ffcaa376c9c3'),(3526,77,'reasons_4_background_image_static','69'),(3527,77,'_reasons_4_background_image_static','field_5ffca843bd901'),(3528,77,'reasons_4_background_image_animated','69'),(3529,77,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(3530,77,'reasons_5_background_image_static','70'),(3531,77,'_reasons_5_background_image_static','field_5ffca843bd901'),(3532,77,'reasons_5_background_image_animated','70'),(3533,77,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(3534,78,'_wp_attached_file','2021/01/bgheaderbanner-desktop.png'),(3535,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1600;s:4:\"file\";s:34:\"2021/01/bgheaderbanner-desktop.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"bgheaderbanner-desktop-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"bgheaderbanner-desktop-1024x569.png\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"bgheaderbanner-desktop-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"bgheaderbanner-desktop-768x427.png\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"bgheaderbanner-desktop-1536x853.png\";s:5:\"width\";i:1536;s:6:\"height\";i:853;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"bgheaderbanner-desktop-2048x1138.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"bgheaderbanner-desktop-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"banner-desktop\";a:4:{s:4:\"file\";s:36:\"bgheaderbanner-desktop-1920x1080.png\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:34:\"bgheaderbanner-desktop-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:34:\"bgheaderbanner-desktop-880x940.png\";s:5:\"width\";i:880;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3538,80,'_wp_attached_file','2021/01/womanbanner-mobile.gif'),(3539,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1577;s:6:\"height\";i:743;s:4:\"file\";s:30:\"2021/01/womanbanner-mobile.gif\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-300x141.gif\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1024x482.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-768x362.gif\";s:5:\"width\";i:768;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1536x724.gif\";s:5:\"width\";i:1536;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"womanbanner-mobile-1060x655.gif\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-768x554.gif\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:30:\"womanbanner-mobile-880x743.gif\";s:5:\"width\";i:880;s:6:\"height\";i:743;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3540,81,'title_gold','One Academy'),(3541,81,'_title_gold','field_5ffc850fff400'),(3542,81,'title_white','Virtual'),(3543,81,'_title_white','field_5ffc8523ff401'),(3544,81,'value','25'),(3545,81,'_value','field_5ffc87023f4a1'),(3546,81,'text_banner','1-Week Unlimited Virtual Classes'),(3547,81,'_text_banner','field_5ffc87313f4a2'),(3548,81,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(3549,81,'_link_button','field_5ffc87543f4a3'),(3550,81,'text_button_banner','Start Now'),(3551,81,'_text_button_banner','field_5ffc87833f4a4'),(3552,81,'text_button_scroll_top','Book Now'),(3553,81,'_text_button_scroll_top','field_5ffc87983f4a5'),(3554,81,'background_banner','78'),(3555,81,'_background_banner','field_5ffc85ebcc1e9'),(3556,81,'static_image','52'),(3557,81,'_static_image','field_5ffc85fdcc1ea'),(3558,81,'animated','1'),(3559,81,'_animated','field_5ffc8668cc1eb'),(3560,81,'animated_image','80'),(3561,81,'_animated_image','field_5ffc8683cc1ec'),(3562,81,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(3563,81,'_title_reasons','field_5ffc9f7220389'),(3564,81,'reasons_0_text','Reason'),(3565,81,'_reasons_0_text','field_5ffca05ea140c'),(3566,81,'reasons_0_number','1'),(3567,81,'_reasons_0_number','field_5ffca0a9a140d'),(3568,81,'reasons_0_title','Get ready to turn your home into your new gym'),(3569,81,'_reasons_0_title','field_5ffca1c17dcbd'),(3570,81,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(3571,81,'_reasons_0_content','field_5ffca1d37dcbe'),(3572,81,'reasons_0_static','54'),(3573,81,'_reasons_0_static','field_5ffca9f36c9c1'),(3574,81,'reasons_0_animate','0'),(3575,81,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(3576,81,'reasons_0_background_color','lightgray2'),(3577,81,'_reasons_0_background_color','field_5ffca2087dcc0'),(3578,81,'reasons_0_background_image','56'),(3579,81,'_reasons_0_background_image','field_5ffca965f8d44'),(3580,81,'reasons_1_text','Reason'),(3581,81,'_reasons_1_text','field_5ffca05ea140c'),(3582,81,'reasons_1_number','2'),(3583,81,'_reasons_1_number','field_5ffca0a9a140d'),(3584,81,'reasons_1_title','Toronto’s best gym'),(3585,81,'_reasons_1_title','field_5ffca1c17dcbd'),(3586,81,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(3587,81,'_reasons_1_content','field_5ffca1d37dcbe'),(3588,81,'reasons_1_static','58'),(3589,81,'_reasons_1_static','field_5ffca9f36c9c1'),(3590,81,'reasons_1_animate','0'),(3591,81,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(3592,81,'reasons_1_background_color','darkgray'),(3593,81,'_reasons_1_background_color','field_5ffca2087dcc0'),(3594,81,'reasons_1_background_image',''),(3595,81,'_reasons_1_background_image','field_5ffca965f8d44'),(3596,81,'reasons_2_text','Reason'),(3597,81,'_reasons_2_text','field_5ffca05ea140c'),(3598,81,'reasons_2_number','3'),(3599,81,'_reasons_2_number','field_5ffca0a9a140d'),(3600,81,'reasons_2_title','Virtual classes with live coaches'),(3601,81,'_reasons_2_title','field_5ffca1c17dcbd'),(3602,81,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(3603,81,'_reasons_2_content','field_5ffca1d37dcbe'),(3604,81,'reasons_2_static','61'),(3605,81,'_reasons_2_static','field_5ffca9f36c9c1'),(3606,81,'reasons_2_animate','1'),(3607,81,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(3608,81,'reasons_2_background_color','white'),(3609,81,'_reasons_2_background_color','field_5ffca2087dcc0'),(3610,81,'reasons_2_background_image',''),(3611,81,'_reasons_2_background_image','field_5ffca965f8d44'),(3612,81,'reasons_3_text','Reason'),(3613,81,'_reasons_3_text','field_5ffca05ea140c'),(3614,81,'reasons_3_number','4'),(3615,81,'_reasons_3_number','field_5ffca0a9a140d'),(3616,81,'reasons_3_title','One community'),(3617,81,'_reasons_3_title','field_5ffca1c17dcbd'),(3618,81,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(3619,81,'_reasons_3_content','field_5ffca1d37dcbe'),(3620,81,'reasons_3_static','64'),(3621,81,'_reasons_3_static','field_5ffca9f36c9c1'),(3622,81,'reasons_3_animate','0'),(3623,81,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(3624,81,'reasons_3_background_color','darkgray'),(3625,81,'_reasons_3_background_color','field_5ffca2087dcc0'),(3626,81,'reasons_3_background_image','65'),(3627,81,'_reasons_3_background_image','field_5ffca965f8d44'),(3628,81,'reasons_4_text','Reason'),(3629,81,'_reasons_4_text','field_5ffca05ea140c'),(3630,81,'reasons_4_number','5'),(3631,81,'_reasons_4_number','field_5ffca0a9a140d'),(3632,81,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(3633,81,'_reasons_4_title','field_5ffca1c17dcbd'),(3634,81,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(3635,81,'_reasons_4_content','field_5ffca1d37dcbe'),(3636,81,'reasons_4_static',''),(3637,81,'_reasons_4_static','field_5ffca9f36c9c1'),(3638,81,'reasons_4_animate','0'),(3639,81,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(3640,81,'reasons_4_background_color','video'),(3641,81,'_reasons_4_background_color','field_5ffca2087dcc0'),(3642,81,'reasons_4_background_image',''),(3643,81,'_reasons_4_background_image','field_5ffca965f8d44'),(3644,81,'reasons_5_text','Reason'),(3645,81,'_reasons_5_text','field_5ffca05ea140c'),(3646,81,'reasons_5_number','6'),(3647,81,'_reasons_5_number','field_5ffca0a9a140d'),(3648,81,'reasons_5_title','More members means you pay less'),(3649,81,'_reasons_5_title','field_5ffca1c17dcbd'),(3650,81,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(3651,81,'_reasons_5_content','field_5ffca1d37dcbe'),(3652,81,'reasons_5_static',''),(3653,81,'_reasons_5_static','field_5ffca9f36c9c1'),(3654,81,'reasons_5_animate','0'),(3655,81,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(3656,81,'reasons_5_background_color','video'),(3657,81,'_reasons_5_background_color','field_5ffca2087dcc0'),(3658,81,'reasons_5_background_image',''),(3659,81,'_reasons_5_background_image','field_5ffca965f8d44'),(3660,81,'reasons_6_text','Reason'),(3661,81,'_reasons_6_text','field_5ffca05ea140c'),(3662,81,'reasons_6_number','7'),(3663,81,'_reasons_6_number','field_5ffca0a9a140d'),(3664,81,'reasons_6_title','Break your routine'),(3665,81,'_reasons_6_title','field_5ffca1c17dcbd'),(3666,81,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(3667,81,'_reasons_6_content','field_5ffca1d37dcbe'),(3668,81,'reasons_6_static',''),(3669,81,'_reasons_6_static','field_5ffca9f36c9c1'),(3670,81,'reasons_6_animate','0'),(3671,81,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(3672,81,'reasons_6_background_color','darkgray'),(3673,81,'_reasons_6_background_color','field_5ffca2087dcc0'),(3674,81,'reasons_6_background_image',''),(3675,81,'_reasons_6_background_image','field_5ffca965f8d44'),(3676,81,'reasons_7_text','Reason'),(3677,81,'_reasons_7_text','field_5ffca05ea140c'),(3678,81,'reasons_7_number','8'),(3679,81,'_reasons_7_number','field_5ffca0a9a140d'),(3680,81,'reasons_7_title','Your pace, your training'),(3681,81,'_reasons_7_title','field_5ffca1c17dcbd'),(3682,81,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(3683,81,'_reasons_7_content','field_5ffca1d37dcbe'),(3684,81,'reasons_7_static','74'),(3685,81,'_reasons_7_static','field_5ffca9f36c9c1'),(3686,81,'reasons_7_animate','0'),(3687,81,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(3688,81,'reasons_7_background_color','white'),(3689,81,'_reasons_7_background_color','field_5ffca2087dcc0'),(3690,81,'reasons_7_background_image',''),(3691,81,'_reasons_7_background_image','field_5ffca965f8d44'),(3692,81,'reasons_8_text','Reason'),(3693,81,'_reasons_8_text','field_5ffca05ea140c'),(3694,81,'reasons_8_number','9'),(3695,81,'_reasons_8_number','field_5ffca0a9a140d'),(3696,81,'reasons_8_title','Expertly crafted workouts'),(3697,81,'_reasons_8_title','field_5ffca1c17dcbd'),(3698,81,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(3699,81,'_reasons_8_content','field_5ffca1d37dcbe'),(3700,81,'reasons_8_static','75'),(3701,81,'_reasons_8_static','field_5ffca9f36c9c1'),(3702,81,'reasons_8_animate','0'),(3703,81,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(3704,81,'reasons_8_background_color','lightgray3'),(3705,81,'_reasons_8_background_color','field_5ffca2087dcc0'),(3706,81,'reasons_8_background_image',''),(3707,81,'_reasons_8_background_image','field_5ffca965f8d44'),(3708,81,'reasons_9_text','Reason'),(3709,81,'_reasons_9_text','field_5ffca05ea140c'),(3710,81,'reasons_9_number','10'),(3711,81,'_reasons_9_number','field_5ffca0a9a140d'),(3712,81,'reasons_9_title','Convenient class times'),(3713,81,'_reasons_9_title','field_5ffca1c17dcbd'),(3714,81,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(3715,81,'_reasons_9_content','field_5ffca1d37dcbe'),(3716,81,'reasons_9_static','76'),(3717,81,'_reasons_9_static','field_5ffca9f36c9c1'),(3718,81,'reasons_9_animate','0'),(3719,81,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(3720,81,'reasons_9_background_color','darkgray'),(3721,81,'_reasons_9_background_color','field_5ffca2087dcc0'),(3722,81,'reasons_9_background_image',''),(3723,81,'_reasons_9_background_image','field_5ffca965f8d44'),(3724,81,'reasons','10'),(3725,81,'_reasons','field_5ffc9fa9a140a'),(3726,81,'reasons_1_second_image','59'),(3727,81,'_reasons_1_second_image','field_5ffcab35014a4'),(3728,81,'reasons_4_second_image','67'),(3729,81,'_reasons_4_second_image','field_5ffcab35014a4'),(3730,81,'reasons_6_second_image','72'),(3731,81,'_reasons_6_second_image','field_5ffcab35014a4'),(3732,81,'reasons_2_animated','61'),(3733,81,'_reasons_2_animated','field_5ffcaa376c9c3'),(3734,81,'reasons_4_background_image_static','69'),(3735,81,'_reasons_4_background_image_static','field_5ffca843bd901'),(3736,81,'reasons_4_background_image_animated','69'),(3737,81,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(3738,81,'reasons_5_background_image_static','70'),(3739,81,'_reasons_5_background_image_static','field_5ffca843bd901'),(3740,81,'reasons_5_background_image_animated','70'),(3741,81,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(3742,82,'_wp_attached_file','2021/01/reason03.gif'),(3743,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:706;s:6:\"height\";i:631;s:4:\"file\";s:20:\"2021/01/reason03.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason03-300x268.gif\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason03-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason03-706x554.gif\";s:5:\"width\";i:706;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3744,83,'title_gold','One Academy'),(3745,83,'_title_gold','field_5ffc850fff400'),(3746,83,'title_white','Virtual'),(3747,83,'_title_white','field_5ffc8523ff401'),(3748,83,'value','25'),(3749,83,'_value','field_5ffc87023f4a1'),(3750,83,'text_banner','1-Week Unlimited Virtual Classes'),(3751,83,'_text_banner','field_5ffc87313f4a2'),(3752,83,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(3753,83,'_link_button','field_5ffc87543f4a3'),(3754,83,'text_button_banner','Start Now'),(3755,83,'_text_button_banner','field_5ffc87833f4a4'),(3756,83,'text_button_scroll_top','Book Now'),(3757,83,'_text_button_scroll_top','field_5ffc87983f4a5'),(3758,83,'background_banner','78'),(3759,83,'_background_banner','field_5ffc85ebcc1e9'),(3760,83,'static_image','52'),(3761,83,'_static_image','field_5ffc85fdcc1ea'),(3762,83,'animated','1'),(3763,83,'_animated','field_5ffc8668cc1eb'),(3764,83,'animated_image','80'),(3765,83,'_animated_image','field_5ffc8683cc1ec'),(3766,83,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(3767,83,'_title_reasons','field_5ffc9f7220389'),(3768,83,'reasons_0_text','Reason'),(3769,83,'_reasons_0_text','field_5ffca05ea140c'),(3770,83,'reasons_0_number','1'),(3771,83,'_reasons_0_number','field_5ffca0a9a140d'),(3772,83,'reasons_0_title','Get ready to turn your home into your new gym'),(3773,83,'_reasons_0_title','field_5ffca1c17dcbd'),(3774,83,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(3775,83,'_reasons_0_content','field_5ffca1d37dcbe'),(3776,83,'reasons_0_static','54'),(3777,83,'_reasons_0_static','field_5ffca9f36c9c1'),(3778,83,'reasons_0_animate','0'),(3779,83,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(3780,83,'reasons_0_background_color','lightgray2'),(3781,83,'_reasons_0_background_color','field_5ffca2087dcc0'),(3782,83,'reasons_0_background_image','56'),(3783,83,'_reasons_0_background_image','field_5ffca965f8d44'),(3784,83,'reasons_1_text','Reason'),(3785,83,'_reasons_1_text','field_5ffca05ea140c'),(3786,83,'reasons_1_number','2'),(3787,83,'_reasons_1_number','field_5ffca0a9a140d'),(3788,83,'reasons_1_title','Toronto’s best gym'),(3789,83,'_reasons_1_title','field_5ffca1c17dcbd'),(3790,83,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(3791,83,'_reasons_1_content','field_5ffca1d37dcbe'),(3792,83,'reasons_1_static','58'),(3793,83,'_reasons_1_static','field_5ffca9f36c9c1'),(3794,83,'reasons_1_animate','0'),(3795,83,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(3796,83,'reasons_1_background_color','darkgray'),(3797,83,'_reasons_1_background_color','field_5ffca2087dcc0'),(3798,83,'reasons_1_background_image',''),(3799,83,'_reasons_1_background_image','field_5ffca965f8d44'),(3800,83,'reasons_2_text','Reason'),(3801,83,'_reasons_2_text','field_5ffca05ea140c'),(3802,83,'reasons_2_number','3'),(3803,83,'_reasons_2_number','field_5ffca0a9a140d'),(3804,83,'reasons_2_title','Virtual classes with live coaches'),(3805,83,'_reasons_2_title','field_5ffca1c17dcbd'),(3806,83,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(3807,83,'_reasons_2_content','field_5ffca1d37dcbe'),(3808,83,'reasons_2_static','61'),(3809,83,'_reasons_2_static','field_5ffca9f36c9c1'),(3810,83,'reasons_2_animate','1'),(3811,83,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(3812,83,'reasons_2_background_color','white'),(3813,83,'_reasons_2_background_color','field_5ffca2087dcc0'),(3814,83,'reasons_2_background_image',''),(3815,83,'_reasons_2_background_image','field_5ffca965f8d44'),(3816,83,'reasons_3_text','Reason'),(3817,83,'_reasons_3_text','field_5ffca05ea140c'),(3818,83,'reasons_3_number','4'),(3819,83,'_reasons_3_number','field_5ffca0a9a140d'),(3820,83,'reasons_3_title','One community'),(3821,83,'_reasons_3_title','field_5ffca1c17dcbd'),(3822,83,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(3823,83,'_reasons_3_content','field_5ffca1d37dcbe'),(3824,83,'reasons_3_static','64'),(3825,83,'_reasons_3_static','field_5ffca9f36c9c1'),(3826,83,'reasons_3_animate','0'),(3827,83,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(3828,83,'reasons_3_background_color','darkgray'),(3829,83,'_reasons_3_background_color','field_5ffca2087dcc0'),(3830,83,'reasons_3_background_image','65'),(3831,83,'_reasons_3_background_image','field_5ffca965f8d44'),(3832,83,'reasons_4_text','Reason'),(3833,83,'_reasons_4_text','field_5ffca05ea140c'),(3834,83,'reasons_4_number','5'),(3835,83,'_reasons_4_number','field_5ffca0a9a140d'),(3836,83,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(3837,83,'_reasons_4_title','field_5ffca1c17dcbd'),(3838,83,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(3839,83,'_reasons_4_content','field_5ffca1d37dcbe'),(3840,83,'reasons_4_static',''),(3841,83,'_reasons_4_static','field_5ffca9f36c9c1'),(3842,83,'reasons_4_animate','0'),(3843,83,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(3844,83,'reasons_4_background_color','video'),(3845,83,'_reasons_4_background_color','field_5ffca2087dcc0'),(3846,83,'reasons_4_background_image',''),(3847,83,'_reasons_4_background_image','field_5ffca965f8d44'),(3848,83,'reasons_5_text','Reason'),(3849,83,'_reasons_5_text','field_5ffca05ea140c'),(3850,83,'reasons_5_number','6'),(3851,83,'_reasons_5_number','field_5ffca0a9a140d'),(3852,83,'reasons_5_title','More members means you pay less'),(3853,83,'_reasons_5_title','field_5ffca1c17dcbd'),(3854,83,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(3855,83,'_reasons_5_content','field_5ffca1d37dcbe'),(3856,83,'reasons_5_static',''),(3857,83,'_reasons_5_static','field_5ffca9f36c9c1'),(3858,83,'reasons_5_animate','0'),(3859,83,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(3860,83,'reasons_5_background_color','video'),(3861,83,'_reasons_5_background_color','field_5ffca2087dcc0'),(3862,83,'reasons_5_background_image',''),(3863,83,'_reasons_5_background_image','field_5ffca965f8d44'),(3864,83,'reasons_6_text','Reason'),(3865,83,'_reasons_6_text','field_5ffca05ea140c'),(3866,83,'reasons_6_number','7'),(3867,83,'_reasons_6_number','field_5ffca0a9a140d'),(3868,83,'reasons_6_title','Break your routine'),(3869,83,'_reasons_6_title','field_5ffca1c17dcbd'),(3870,83,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(3871,83,'_reasons_6_content','field_5ffca1d37dcbe'),(3872,83,'reasons_6_static',''),(3873,83,'_reasons_6_static','field_5ffca9f36c9c1'),(3874,83,'reasons_6_animate','0'),(3875,83,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(3876,83,'reasons_6_background_color','darkgray'),(3877,83,'_reasons_6_background_color','field_5ffca2087dcc0'),(3878,83,'reasons_6_background_image',''),(3879,83,'_reasons_6_background_image','field_5ffca965f8d44'),(3880,83,'reasons_7_text','Reason'),(3881,83,'_reasons_7_text','field_5ffca05ea140c'),(3882,83,'reasons_7_number','8'),(3883,83,'_reasons_7_number','field_5ffca0a9a140d'),(3884,83,'reasons_7_title','Your pace, your training'),(3885,83,'_reasons_7_title','field_5ffca1c17dcbd'),(3886,83,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(3887,83,'_reasons_7_content','field_5ffca1d37dcbe'),(3888,83,'reasons_7_static','74'),(3889,83,'_reasons_7_static','field_5ffca9f36c9c1'),(3890,83,'reasons_7_animate','0'),(3891,83,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(3892,83,'reasons_7_background_color','white'),(3893,83,'_reasons_7_background_color','field_5ffca2087dcc0'),(3894,83,'reasons_7_background_image',''),(3895,83,'_reasons_7_background_image','field_5ffca965f8d44'),(3896,83,'reasons_8_text','Reason'),(3897,83,'_reasons_8_text','field_5ffca05ea140c'),(3898,83,'reasons_8_number','9'),(3899,83,'_reasons_8_number','field_5ffca0a9a140d'),(3900,83,'reasons_8_title','Expertly crafted workouts'),(3901,83,'_reasons_8_title','field_5ffca1c17dcbd'),(3902,83,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(3903,83,'_reasons_8_content','field_5ffca1d37dcbe'),(3904,83,'reasons_8_static','75'),(3905,83,'_reasons_8_static','field_5ffca9f36c9c1'),(3906,83,'reasons_8_animate','0'),(3907,83,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(3908,83,'reasons_8_background_color','lightgray3'),(3909,83,'_reasons_8_background_color','field_5ffca2087dcc0'),(3910,83,'reasons_8_background_image',''),(3911,83,'_reasons_8_background_image','field_5ffca965f8d44'),(3912,83,'reasons_9_text','Reason'),(3913,83,'_reasons_9_text','field_5ffca05ea140c'),(3914,83,'reasons_9_number','10'),(3915,83,'_reasons_9_number','field_5ffca0a9a140d'),(3916,83,'reasons_9_title','Convenient class times'),(3917,83,'_reasons_9_title','field_5ffca1c17dcbd'),(3918,83,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(3919,83,'_reasons_9_content','field_5ffca1d37dcbe'),(3920,83,'reasons_9_static','76'),(3921,83,'_reasons_9_static','field_5ffca9f36c9c1'),(3922,83,'reasons_9_animate','0'),(3923,83,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(3924,83,'reasons_9_background_color','darkgray'),(3925,83,'_reasons_9_background_color','field_5ffca2087dcc0'),(3926,83,'reasons_9_background_image',''),(3927,83,'_reasons_9_background_image','field_5ffca965f8d44'),(3928,83,'reasons','10'),(3929,83,'_reasons','field_5ffc9fa9a140a'),(3930,83,'reasons_1_second_image','59'),(3931,83,'_reasons_1_second_image','field_5ffcab35014a4'),(3932,83,'reasons_4_second_image','67'),(3933,83,'_reasons_4_second_image','field_5ffcab35014a4'),(3934,83,'reasons_6_second_image','72'),(3935,83,'_reasons_6_second_image','field_5ffcab35014a4'),(3936,83,'reasons_2_animated','82'),(3937,83,'_reasons_2_animated','field_5ffcaa376c9c3'),(3938,83,'reasons_4_background_image_static','69'),(3939,83,'_reasons_4_background_image_static','field_5ffca843bd901'),(3940,83,'reasons_4_background_image_animated','69'),(3941,83,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(3942,83,'reasons_5_background_image_static','70'),(3943,83,'_reasons_5_background_image_static','field_5ffca843bd901'),(3944,83,'reasons_5_background_image_animated','70'),(3945,83,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(3946,84,'_wp_attached_file','2021/01/reason05.gif'),(3947,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2021/01/reason05.gif\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason05-240x300.gif\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason05-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason05-768x960.gif\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"reason05-800x655.gif\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason05-768x554.gif\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason05-800x940.gif\";s:5:\"width\";i:800;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3948,85,'title_gold','One Academy'),(3949,85,'_title_gold','field_5ffc850fff400'),(3950,85,'title_white','Virtual'),(3951,85,'_title_white','field_5ffc8523ff401'),(3952,85,'value','25'),(3953,85,'_value','field_5ffc87023f4a1'),(3954,85,'text_banner','1-Week Unlimited Virtual Classes'),(3955,85,'_text_banner','field_5ffc87313f4a2'),(3956,85,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(3957,85,'_link_button','field_5ffc87543f4a3'),(3958,85,'text_button_banner','Start Now'),(3959,85,'_text_button_banner','field_5ffc87833f4a4'),(3960,85,'text_button_scroll_top','Book Now'),(3961,85,'_text_button_scroll_top','field_5ffc87983f4a5'),(3962,85,'background_banner','78'),(3963,85,'_background_banner','field_5ffc85ebcc1e9'),(3964,85,'static_image','52'),(3965,85,'_static_image','field_5ffc85fdcc1ea'),(3966,85,'animated','1'),(3967,85,'_animated','field_5ffc8668cc1eb'),(3968,85,'animated_image','80'),(3969,85,'_animated_image','field_5ffc8683cc1ec'),(3970,85,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(3971,85,'_title_reasons','field_5ffc9f7220389'),(3972,85,'reasons_0_text','Reason'),(3973,85,'_reasons_0_text','field_5ffca05ea140c'),(3974,85,'reasons_0_number','1'),(3975,85,'_reasons_0_number','field_5ffca0a9a140d'),(3976,85,'reasons_0_title','Get ready to turn your home into your new gym'),(3977,85,'_reasons_0_title','field_5ffca1c17dcbd'),(3978,85,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(3979,85,'_reasons_0_content','field_5ffca1d37dcbe'),(3980,85,'reasons_0_static','54'),(3981,85,'_reasons_0_static','field_5ffca9f36c9c1'),(3982,85,'reasons_0_animate','0'),(3983,85,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(3984,85,'reasons_0_background_color','lightgray2'),(3985,85,'_reasons_0_background_color','field_5ffca2087dcc0'),(3986,85,'reasons_0_background_image','56'),(3987,85,'_reasons_0_background_image','field_5ffca965f8d44'),(3988,85,'reasons_1_text','Reason'),(3989,85,'_reasons_1_text','field_5ffca05ea140c'),(3990,85,'reasons_1_number','2'),(3991,85,'_reasons_1_number','field_5ffca0a9a140d'),(3992,85,'reasons_1_title','Toronto’s best gym'),(3993,85,'_reasons_1_title','field_5ffca1c17dcbd'),(3994,85,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(3995,85,'_reasons_1_content','field_5ffca1d37dcbe'),(3996,85,'reasons_1_static','58'),(3997,85,'_reasons_1_static','field_5ffca9f36c9c1'),(3998,85,'reasons_1_animate','0'),(3999,85,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(4000,85,'reasons_1_background_color','darkgray'),(4001,85,'_reasons_1_background_color','field_5ffca2087dcc0'),(4002,85,'reasons_1_background_image',''),(4003,85,'_reasons_1_background_image','field_5ffca965f8d44'),(4004,85,'reasons_2_text','Reason'),(4005,85,'_reasons_2_text','field_5ffca05ea140c'),(4006,85,'reasons_2_number','3'),(4007,85,'_reasons_2_number','field_5ffca0a9a140d'),(4008,85,'reasons_2_title','Virtual classes with live coaches'),(4009,85,'_reasons_2_title','field_5ffca1c17dcbd'),(4010,85,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(4011,85,'_reasons_2_content','field_5ffca1d37dcbe'),(4012,85,'reasons_2_static','61'),(4013,85,'_reasons_2_static','field_5ffca9f36c9c1'),(4014,85,'reasons_2_animate','1'),(4015,85,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(4016,85,'reasons_2_background_color','white'),(4017,85,'_reasons_2_background_color','field_5ffca2087dcc0'),(4018,85,'reasons_2_background_image',''),(4019,85,'_reasons_2_background_image','field_5ffca965f8d44'),(4020,85,'reasons_3_text','Reason'),(4021,85,'_reasons_3_text','field_5ffca05ea140c'),(4022,85,'reasons_3_number','4'),(4023,85,'_reasons_3_number','field_5ffca0a9a140d'),(4024,85,'reasons_3_title','One community'),(4025,85,'_reasons_3_title','field_5ffca1c17dcbd'),(4026,85,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(4027,85,'_reasons_3_content','field_5ffca1d37dcbe'),(4028,85,'reasons_3_static','64'),(4029,85,'_reasons_3_static','field_5ffca9f36c9c1'),(4030,85,'reasons_3_animate','0'),(4031,85,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(4032,85,'reasons_3_background_color','darkgray'),(4033,85,'_reasons_3_background_color','field_5ffca2087dcc0'),(4034,85,'reasons_3_background_image','65'),(4035,85,'_reasons_3_background_image','field_5ffca965f8d44'),(4036,85,'reasons_4_text','Reason'),(4037,85,'_reasons_4_text','field_5ffca05ea140c'),(4038,85,'reasons_4_number','5'),(4039,85,'_reasons_4_number','field_5ffca0a9a140d'),(4040,85,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(4041,85,'_reasons_4_title','field_5ffca1c17dcbd'),(4042,85,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(4043,85,'_reasons_4_content','field_5ffca1d37dcbe'),(4044,85,'reasons_4_static',''),(4045,85,'_reasons_4_static','field_5ffca9f36c9c1'),(4046,85,'reasons_4_animate','0'),(4047,85,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(4048,85,'reasons_4_background_color','video'),(4049,85,'_reasons_4_background_color','field_5ffca2087dcc0'),(4050,85,'reasons_4_background_image',''),(4051,85,'_reasons_4_background_image','field_5ffca965f8d44'),(4052,85,'reasons_5_text','Reason'),(4053,85,'_reasons_5_text','field_5ffca05ea140c'),(4054,85,'reasons_5_number','6'),(4055,85,'_reasons_5_number','field_5ffca0a9a140d'),(4056,85,'reasons_5_title','More members means you pay less'),(4057,85,'_reasons_5_title','field_5ffca1c17dcbd'),(4058,85,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(4059,85,'_reasons_5_content','field_5ffca1d37dcbe'),(4060,85,'reasons_5_static',''),(4061,85,'_reasons_5_static','field_5ffca9f36c9c1'),(4062,85,'reasons_5_animate','0'),(4063,85,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(4064,85,'reasons_5_background_color','video'),(4065,85,'_reasons_5_background_color','field_5ffca2087dcc0'),(4066,85,'reasons_5_background_image',''),(4067,85,'_reasons_5_background_image','field_5ffca965f8d44'),(4068,85,'reasons_6_text','Reason'),(4069,85,'_reasons_6_text','field_5ffca05ea140c'),(4070,85,'reasons_6_number','7'),(4071,85,'_reasons_6_number','field_5ffca0a9a140d'),(4072,85,'reasons_6_title','Break your routine'),(4073,85,'_reasons_6_title','field_5ffca1c17dcbd'),(4074,85,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(4075,85,'_reasons_6_content','field_5ffca1d37dcbe'),(4076,85,'reasons_6_static',''),(4077,85,'_reasons_6_static','field_5ffca9f36c9c1'),(4078,85,'reasons_6_animate','0'),(4079,85,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(4080,85,'reasons_6_background_color','darkgray'),(4081,85,'_reasons_6_background_color','field_5ffca2087dcc0'),(4082,85,'reasons_6_background_image',''),(4083,85,'_reasons_6_background_image','field_5ffca965f8d44'),(4084,85,'reasons_7_text','Reason'),(4085,85,'_reasons_7_text','field_5ffca05ea140c'),(4086,85,'reasons_7_number','8'),(4087,85,'_reasons_7_number','field_5ffca0a9a140d'),(4088,85,'reasons_7_title','Your pace, your training'),(4089,85,'_reasons_7_title','field_5ffca1c17dcbd'),(4090,85,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(4091,85,'_reasons_7_content','field_5ffca1d37dcbe'),(4092,85,'reasons_7_static','74'),(4093,85,'_reasons_7_static','field_5ffca9f36c9c1'),(4094,85,'reasons_7_animate','0'),(4095,85,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(4096,85,'reasons_7_background_color','white'),(4097,85,'_reasons_7_background_color','field_5ffca2087dcc0'),(4098,85,'reasons_7_background_image',''),(4099,85,'_reasons_7_background_image','field_5ffca965f8d44'),(4100,85,'reasons_8_text','Reason'),(4101,85,'_reasons_8_text','field_5ffca05ea140c'),(4102,85,'reasons_8_number','9'),(4103,85,'_reasons_8_number','field_5ffca0a9a140d'),(4104,85,'reasons_8_title','Expertly crafted workouts'),(4105,85,'_reasons_8_title','field_5ffca1c17dcbd'),(4106,85,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(4107,85,'_reasons_8_content','field_5ffca1d37dcbe'),(4108,85,'reasons_8_static','75'),(4109,85,'_reasons_8_static','field_5ffca9f36c9c1'),(4110,85,'reasons_8_animate','0'),(4111,85,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(4112,85,'reasons_8_background_color','lightgray3'),(4113,85,'_reasons_8_background_color','field_5ffca2087dcc0'),(4114,85,'reasons_8_background_image',''),(4115,85,'_reasons_8_background_image','field_5ffca965f8d44'),(4116,85,'reasons_9_text','Reason'),(4117,85,'_reasons_9_text','field_5ffca05ea140c'),(4118,85,'reasons_9_number','10'),(4119,85,'_reasons_9_number','field_5ffca0a9a140d'),(4120,85,'reasons_9_title','Convenient class times'),(4121,85,'_reasons_9_title','field_5ffca1c17dcbd'),(4122,85,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(4123,85,'_reasons_9_content','field_5ffca1d37dcbe'),(4124,85,'reasons_9_static','76'),(4125,85,'_reasons_9_static','field_5ffca9f36c9c1'),(4126,85,'reasons_9_animate','0'),(4127,85,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(4128,85,'reasons_9_background_color','darkgray'),(4129,85,'_reasons_9_background_color','field_5ffca2087dcc0'),(4130,85,'reasons_9_background_image',''),(4131,85,'_reasons_9_background_image','field_5ffca965f8d44'),(4132,85,'reasons','10'),(4133,85,'_reasons','field_5ffc9fa9a140a'),(4134,85,'reasons_1_second_image','59'),(4135,85,'_reasons_1_second_image','field_5ffcab35014a4'),(4136,85,'reasons_4_second_image','67'),(4137,85,'_reasons_4_second_image','field_5ffcab35014a4'),(4138,85,'reasons_6_second_image','72'),(4139,85,'_reasons_6_second_image','field_5ffcab35014a4'),(4140,85,'reasons_2_animated','82'),(4141,85,'_reasons_2_animated','field_5ffcaa376c9c3'),(4142,85,'reasons_4_background_image_static','69'),(4143,85,'_reasons_4_background_image_static','field_5ffca843bd901'),(4144,85,'reasons_4_background_image_animated','84'),(4145,85,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(4146,85,'reasons_5_background_image_static','70'),(4147,85,'_reasons_5_background_image_static','field_5ffca843bd901'),(4148,85,'reasons_5_background_image_animated','70'),(4149,85,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(4150,86,'_wp_attached_file','2021/01/reason07.png'),(4151,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:786;s:6:\"height\";i:2454;s:4:\"file\";s:20:\"2021/01/reason07.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"reason07-96x300.png\";s:5:\"width\";i:96;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"reason07-328x1024.png\";s:5:\"width\";i:328;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"reason07-768x2398.png\";s:5:\"width\";i:768;s:6:\"height\";i:2398;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"reason07-492x1536.png\";s:5:\"width\";i:492;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:21:\"reason07-656x2048.png\";s:5:\"width\";i:656;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"reason07-786x655.png\";s:5:\"width\";i:786;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"banner-desktop\";a:4:{s:4:\"file\";s:21:\"reason07-786x1080.png\";s:5:\"width\";i:786;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason07-768x554.png\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason07-786x940.png\";s:5:\"width\";i:786;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4152,87,'title_gold','One Academy'),(4153,87,'_title_gold','field_5ffc850fff400'),(4154,87,'title_white','Virtual'),(4155,87,'_title_white','field_5ffc8523ff401'),(4156,87,'value','25'),(4157,87,'_value','field_5ffc87023f4a1'),(4158,87,'text_banner','1-Week Unlimited Virtual Classes'),(4159,87,'_text_banner','field_5ffc87313f4a2'),(4160,87,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(4161,87,'_link_button','field_5ffc87543f4a3'),(4162,87,'text_button_banner','Start Now'),(4163,87,'_text_button_banner','field_5ffc87833f4a4'),(4164,87,'text_button_scroll_top','Book Now'),(4165,87,'_text_button_scroll_top','field_5ffc87983f4a5'),(4166,87,'background_banner','78'),(4167,87,'_background_banner','field_5ffc85ebcc1e9'),(4168,87,'static_image','52'),(4169,87,'_static_image','field_5ffc85fdcc1ea'),(4170,87,'animated','1'),(4171,87,'_animated','field_5ffc8668cc1eb'),(4172,87,'animated_image','80'),(4173,87,'_animated_image','field_5ffc8683cc1ec'),(4174,87,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(4175,87,'_title_reasons','field_5ffc9f7220389'),(4176,87,'reasons_0_text','Reason'),(4177,87,'_reasons_0_text','field_5ffca05ea140c'),(4178,87,'reasons_0_number','1'),(4179,87,'_reasons_0_number','field_5ffca0a9a140d'),(4180,87,'reasons_0_title','Get ready to turn your home into your new gym'),(4181,87,'_reasons_0_title','field_5ffca1c17dcbd'),(4182,87,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(4183,87,'_reasons_0_content','field_5ffca1d37dcbe'),(4184,87,'reasons_0_static','54'),(4185,87,'_reasons_0_static','field_5ffca9f36c9c1'),(4186,87,'reasons_0_animate','0'),(4187,87,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(4188,87,'reasons_0_background_color','lightgray2'),(4189,87,'_reasons_0_background_color','field_5ffca2087dcc0'),(4190,87,'reasons_0_background_image','56'),(4191,87,'_reasons_0_background_image','field_5ffca965f8d44'),(4192,87,'reasons_1_text','Reason'),(4193,87,'_reasons_1_text','field_5ffca05ea140c'),(4194,87,'reasons_1_number','2'),(4195,87,'_reasons_1_number','field_5ffca0a9a140d'),(4196,87,'reasons_1_title','Toronto’s best gym'),(4197,87,'_reasons_1_title','field_5ffca1c17dcbd'),(4198,87,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(4199,87,'_reasons_1_content','field_5ffca1d37dcbe'),(4200,87,'reasons_1_static','58'),(4201,87,'_reasons_1_static','field_5ffca9f36c9c1'),(4202,87,'reasons_1_animate','0'),(4203,87,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(4204,87,'reasons_1_background_color','darkgray'),(4205,87,'_reasons_1_background_color','field_5ffca2087dcc0'),(4206,87,'reasons_1_background_image',''),(4207,87,'_reasons_1_background_image','field_5ffca965f8d44'),(4208,87,'reasons_2_text','Reason'),(4209,87,'_reasons_2_text','field_5ffca05ea140c'),(4210,87,'reasons_2_number','3'),(4211,87,'_reasons_2_number','field_5ffca0a9a140d'),(4212,87,'reasons_2_title','Virtual classes with live coaches'),(4213,87,'_reasons_2_title','field_5ffca1c17dcbd'),(4214,87,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(4215,87,'_reasons_2_content','field_5ffca1d37dcbe'),(4216,87,'reasons_2_static','61'),(4217,87,'_reasons_2_static','field_5ffca9f36c9c1'),(4218,87,'reasons_2_animate','1'),(4219,87,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(4220,87,'reasons_2_background_color','white'),(4221,87,'_reasons_2_background_color','field_5ffca2087dcc0'),(4222,87,'reasons_2_background_image',''),(4223,87,'_reasons_2_background_image','field_5ffca965f8d44'),(4224,87,'reasons_3_text','Reason'),(4225,87,'_reasons_3_text','field_5ffca05ea140c'),(4226,87,'reasons_3_number','4'),(4227,87,'_reasons_3_number','field_5ffca0a9a140d'),(4228,87,'reasons_3_title','One community'),(4229,87,'_reasons_3_title','field_5ffca1c17dcbd'),(4230,87,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(4231,87,'_reasons_3_content','field_5ffca1d37dcbe'),(4232,87,'reasons_3_static','64'),(4233,87,'_reasons_3_static','field_5ffca9f36c9c1'),(4234,87,'reasons_3_animate','0'),(4235,87,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(4236,87,'reasons_3_background_color','darkgray'),(4237,87,'_reasons_3_background_color','field_5ffca2087dcc0'),(4238,87,'reasons_3_background_image','65'),(4239,87,'_reasons_3_background_image','field_5ffca965f8d44'),(4240,87,'reasons_4_text','Reason'),(4241,87,'_reasons_4_text','field_5ffca05ea140c'),(4242,87,'reasons_4_number','5'),(4243,87,'_reasons_4_number','field_5ffca0a9a140d'),(4244,87,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(4245,87,'_reasons_4_title','field_5ffca1c17dcbd'),(4246,87,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(4247,87,'_reasons_4_content','field_5ffca1d37dcbe'),(4248,87,'reasons_4_static',''),(4249,87,'_reasons_4_static','field_5ffca9f36c9c1'),(4250,87,'reasons_4_animate','0'),(4251,87,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(4252,87,'reasons_4_background_color','video'),(4253,87,'_reasons_4_background_color','field_5ffca2087dcc0'),(4254,87,'reasons_4_background_image',''),(4255,87,'_reasons_4_background_image','field_5ffca965f8d44'),(4256,87,'reasons_5_text','Reason'),(4257,87,'_reasons_5_text','field_5ffca05ea140c'),(4258,87,'reasons_5_number','6'),(4259,87,'_reasons_5_number','field_5ffca0a9a140d'),(4260,87,'reasons_5_title','More members means you pay less'),(4261,87,'_reasons_5_title','field_5ffca1c17dcbd'),(4262,87,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(4263,87,'_reasons_5_content','field_5ffca1d37dcbe'),(4264,87,'reasons_5_static',''),(4265,87,'_reasons_5_static','field_5ffca9f36c9c1'),(4266,87,'reasons_5_animate','0'),(4267,87,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(4268,87,'reasons_5_background_color','video'),(4269,87,'_reasons_5_background_color','field_5ffca2087dcc0'),(4270,87,'reasons_5_background_image',''),(4271,87,'_reasons_5_background_image','field_5ffca965f8d44'),(4272,87,'reasons_6_text','Reason'),(4273,87,'_reasons_6_text','field_5ffca05ea140c'),(4274,87,'reasons_6_number','7'),(4275,87,'_reasons_6_number','field_5ffca0a9a140d'),(4276,87,'reasons_6_title','Break your routine'),(4277,87,'_reasons_6_title','field_5ffca1c17dcbd'),(4278,87,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(4279,87,'_reasons_6_content','field_5ffca1d37dcbe'),(4280,87,'reasons_6_static','86'),(4281,87,'_reasons_6_static','field_5ffca9f36c9c1'),(4282,87,'reasons_6_animate','0'),(4283,87,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(4284,87,'reasons_6_background_color','darkgray'),(4285,87,'_reasons_6_background_color','field_5ffca2087dcc0'),(4286,87,'reasons_6_background_image',''),(4287,87,'_reasons_6_background_image','field_5ffca965f8d44'),(4288,87,'reasons_7_text','Reason'),(4289,87,'_reasons_7_text','field_5ffca05ea140c'),(4290,87,'reasons_7_number','8'),(4291,87,'_reasons_7_number','field_5ffca0a9a140d'),(4292,87,'reasons_7_title','Your pace, your training'),(4293,87,'_reasons_7_title','field_5ffca1c17dcbd'),(4294,87,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(4295,87,'_reasons_7_content','field_5ffca1d37dcbe'),(4296,87,'reasons_7_static','74'),(4297,87,'_reasons_7_static','field_5ffca9f36c9c1'),(4298,87,'reasons_7_animate','0'),(4299,87,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(4300,87,'reasons_7_background_color','white'),(4301,87,'_reasons_7_background_color','field_5ffca2087dcc0'),(4302,87,'reasons_7_background_image',''),(4303,87,'_reasons_7_background_image','field_5ffca965f8d44'),(4304,87,'reasons_8_text','Reason'),(4305,87,'_reasons_8_text','field_5ffca05ea140c'),(4306,87,'reasons_8_number','9'),(4307,87,'_reasons_8_number','field_5ffca0a9a140d'),(4308,87,'reasons_8_title','Expertly crafted workouts'),(4309,87,'_reasons_8_title','field_5ffca1c17dcbd'),(4310,87,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(4311,87,'_reasons_8_content','field_5ffca1d37dcbe'),(4312,87,'reasons_8_static','75'),(4313,87,'_reasons_8_static','field_5ffca9f36c9c1'),(4314,87,'reasons_8_animate','0'),(4315,87,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(4316,87,'reasons_8_background_color','lightgray3'),(4317,87,'_reasons_8_background_color','field_5ffca2087dcc0'),(4318,87,'reasons_8_background_image',''),(4319,87,'_reasons_8_background_image','field_5ffca965f8d44'),(4320,87,'reasons_9_text','Reason'),(4321,87,'_reasons_9_text','field_5ffca05ea140c'),(4322,87,'reasons_9_number','10'),(4323,87,'_reasons_9_number','field_5ffca0a9a140d'),(4324,87,'reasons_9_title','Convenient class times'),(4325,87,'_reasons_9_title','field_5ffca1c17dcbd'),(4326,87,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(4327,87,'_reasons_9_content','field_5ffca1d37dcbe'),(4328,87,'reasons_9_static','76'),(4329,87,'_reasons_9_static','field_5ffca9f36c9c1'),(4330,87,'reasons_9_animate','0'),(4331,87,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(4332,87,'reasons_9_background_color','darkgray'),(4333,87,'_reasons_9_background_color','field_5ffca2087dcc0'),(4334,87,'reasons_9_background_image',''),(4335,87,'_reasons_9_background_image','field_5ffca965f8d44'),(4336,87,'reasons','10'),(4337,87,'_reasons','field_5ffc9fa9a140a'),(4338,87,'reasons_1_second_image','59'),(4339,87,'_reasons_1_second_image','field_5ffcab35014a4'),(4340,87,'reasons_4_second_image','67'),(4341,87,'_reasons_4_second_image','field_5ffcab35014a4'),(4342,87,'reasons_6_second_image','72'),(4343,87,'_reasons_6_second_image','field_5ffcab35014a4'),(4344,87,'reasons_2_animated','82'),(4345,87,'_reasons_2_animated','field_5ffcaa376c9c3'),(4346,87,'reasons_4_background_image_static','69'),(4347,87,'_reasons_4_background_image_static','field_5ffca843bd901'),(4348,87,'reasons_4_background_image_animated','84'),(4349,87,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(4350,87,'reasons_5_background_image_static','70'),(4351,87,'_reasons_5_background_image_static','field_5ffca843bd901'),(4352,87,'reasons_5_background_image_animated','70'),(4353,87,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(4354,131,'_wp_attached_file','2021/01/devices.png'),(4355,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:316;s:4:\"file\";s:19:\"2021/01/devices.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"devices-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"devices-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:19:\"devices-400x316.png\";s:5:\"width\";i:400;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4356,132,'_wp_attached_file','2021/01/facebook.svg'),(4357,132,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:9;s:6:\"height\";i:22;s:4:\"file\";s:21:\"/2021/01/facebook.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:12:\"facebook.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4358,133,'_wp_attached_file','2021/01/facebook-black.svg'),(4359,133,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:9;s:6:\"height\";i:22;s:4:\"file\";s:27:\"/2021/01/facebook-black.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4360,134,'_wp_attached_file','2021/01/facebook-gold.svg'),(4361,134,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:11;s:6:\"height\";i:26;s:4:\"file\";s:26:\"/2021/01/facebook-gold.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:17:\"facebook-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4362,135,'_wp_attached_file','2021/01/facebook-hover.svg'),(4363,135,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:9;s:6:\"height\";i:22;s:4:\"file\";s:27:\"/2021/01/facebook-hover.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"facebook-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4364,136,'_wp_attached_file','2021/01/instagram.svg'),(4365,136,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:22;s:6:\"height\";i:22;s:4:\"file\";s:22:\"/2021/01/instagram.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:13:\"instagram.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4366,137,'_wp_attached_file','2021/01/instagram-black.svg'),(4367,137,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:22;s:6:\"height\";i:22;s:4:\"file\";s:28:\"/2021/01/instagram-black.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-black.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4368,138,'_wp_attached_file','2021/01/instagram-gold.svg'),(4369,138,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:27;s:6:\"height\";i:27;s:4:\"file\";s:27:\"/2021/01/instagram-gold.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:18:\"instagram-gold.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4370,139,'_wp_attached_file','2021/01/instagram-hover.svg'),(4371,139,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:22;s:6:\"height\";i:22;s:4:\"file\";s:28:\"/2021/01/instagram-hover.svg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:655;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:554;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:13:\"banner-mobile\";a:5:{s:5:\"width\";i:880;s:6:\"height\";i:940;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"bg-video-desktop\";a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-tablet\";a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:15:\"bg-video-mobile\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:19:\"instagram-hover.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(4372,140,'_wp_attached_file','2021/01/reason06.gif'),(4373,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1750;s:6:\"height\";i:1750;s:4:\"file\";s:20:\"2021/01/reason06.gif\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reason06-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"reason06-1024x1024.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reason06-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"reason06-768x768.gif\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"reason06-1536x1536.gif\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"reason06-1060x655.gif\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:20:\"reason06-768x554.gif\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:20:\"reason06-880x940.gif\";s:5:\"width\";i:880;s:6:\"height\";i:940;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"bg-video-desktop\";a:4:{s:4:\"file\";s:21:\"reason06-1440x500.gif\";s:5:\"width\";i:1440;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"bg-video-tablet\";a:4:{s:4:\"file\";s:20:\"reason06-768x500.gif\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:20:\"reason06-400x600.gif\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4374,5,'video_text','Don’t take our word for it, take theirs'),(4375,5,'_video_text','field_5ffdc81396903'),(4376,5,'background_video','142'),(4377,5,'_background_video','field_5ffdc987496e6'),(4378,5,'video','143'),(4379,5,'_video','field_5ffdc82f96904'),(4380,141,'title_gold','One Academy'),(4381,141,'_title_gold','field_5ffc850fff400'),(4382,141,'title_white','Virtual'),(4383,141,'_title_white','field_5ffc8523ff401'),(4384,141,'value','25'),(4385,141,'_value','field_5ffc87023f4a1'),(4386,141,'text_banner','1-Week Unlimited Virtual Classes'),(4387,141,'_text_banner','field_5ffc87313f4a2'),(4388,141,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(4389,141,'_link_button','field_5ffc87543f4a3'),(4390,141,'text_button_banner','Start Now'),(4391,141,'_text_button_banner','field_5ffc87833f4a4'),(4392,141,'text_button_scroll_top','Book Now'),(4393,141,'_text_button_scroll_top','field_5ffc87983f4a5'),(4394,141,'background_banner','78'),(4395,141,'_background_banner','field_5ffc85ebcc1e9'),(4396,141,'static_image','52'),(4397,141,'_static_image','field_5ffc85fdcc1ea'),(4398,141,'animated','1'),(4399,141,'_animated','field_5ffc8668cc1eb'),(4400,141,'animated_image','80'),(4401,141,'_animated_image','field_5ffc8683cc1ec'),(4402,141,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(4403,141,'_title_reasons','field_5ffc9f7220389'),(4404,141,'reasons_0_text','Reason'),(4405,141,'_reasons_0_text','field_5ffca05ea140c'),(4406,141,'reasons_0_number','1'),(4407,141,'_reasons_0_number','field_5ffca0a9a140d'),(4408,141,'reasons_0_title','Get ready to turn your home into your new gym'),(4409,141,'_reasons_0_title','field_5ffca1c17dcbd'),(4410,141,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(4411,141,'_reasons_0_content','field_5ffca1d37dcbe'),(4412,141,'reasons_0_static','54'),(4413,141,'_reasons_0_static','field_5ffca9f36c9c1'),(4414,141,'reasons_0_animate','0'),(4415,141,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(4416,141,'reasons_0_background_color','lightgray2'),(4417,141,'_reasons_0_background_color','field_5ffca2087dcc0'),(4418,141,'reasons_0_background_image','56'),(4419,141,'_reasons_0_background_image','field_5ffca965f8d44'),(4420,141,'reasons_1_text','Reason'),(4421,141,'_reasons_1_text','field_5ffca05ea140c'),(4422,141,'reasons_1_number','2'),(4423,141,'_reasons_1_number','field_5ffca0a9a140d'),(4424,141,'reasons_1_title','Toronto’s best gym'),(4425,141,'_reasons_1_title','field_5ffca1c17dcbd'),(4426,141,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(4427,141,'_reasons_1_content','field_5ffca1d37dcbe'),(4428,141,'reasons_1_static','58'),(4429,141,'_reasons_1_static','field_5ffca9f36c9c1'),(4430,141,'reasons_1_animate','0'),(4431,141,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(4432,141,'reasons_1_background_color','darkgray'),(4433,141,'_reasons_1_background_color','field_5ffca2087dcc0'),(4434,141,'reasons_1_background_image',''),(4435,141,'_reasons_1_background_image','field_5ffca965f8d44'),(4436,141,'reasons_2_text','Reason'),(4437,141,'_reasons_2_text','field_5ffca05ea140c'),(4438,141,'reasons_2_number','3'),(4439,141,'_reasons_2_number','field_5ffca0a9a140d'),(4440,141,'reasons_2_title','Virtual classes with live coaches'),(4441,141,'_reasons_2_title','field_5ffca1c17dcbd'),(4442,141,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(4443,141,'_reasons_2_content','field_5ffca1d37dcbe'),(4444,141,'reasons_2_static','61'),(4445,141,'_reasons_2_static','field_5ffca9f36c9c1'),(4446,141,'reasons_2_animate','1'),(4447,141,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(4448,141,'reasons_2_background_color','white'),(4449,141,'_reasons_2_background_color','field_5ffca2087dcc0'),(4450,141,'reasons_2_background_image',''),(4451,141,'_reasons_2_background_image','field_5ffca965f8d44'),(4452,141,'reasons_3_text','Reason'),(4453,141,'_reasons_3_text','field_5ffca05ea140c'),(4454,141,'reasons_3_number','4'),(4455,141,'_reasons_3_number','field_5ffca0a9a140d'),(4456,141,'reasons_3_title','One community'),(4457,141,'_reasons_3_title','field_5ffca1c17dcbd'),(4458,141,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(4459,141,'_reasons_3_content','field_5ffca1d37dcbe'),(4460,141,'reasons_3_static','64'),(4461,141,'_reasons_3_static','field_5ffca9f36c9c1'),(4462,141,'reasons_3_animate','0'),(4463,141,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(4464,141,'reasons_3_background_color','darkgray'),(4465,141,'_reasons_3_background_color','field_5ffca2087dcc0'),(4466,141,'reasons_3_background_image','65'),(4467,141,'_reasons_3_background_image','field_5ffca965f8d44'),(4468,141,'reasons_4_text','Reason'),(4469,141,'_reasons_4_text','field_5ffca05ea140c'),(4470,141,'reasons_4_number','5'),(4471,141,'_reasons_4_number','field_5ffca0a9a140d'),(4472,141,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(4473,141,'_reasons_4_title','field_5ffca1c17dcbd'),(4474,141,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(4475,141,'_reasons_4_content','field_5ffca1d37dcbe'),(4476,141,'reasons_4_static',''),(4477,141,'_reasons_4_static','field_5ffca9f36c9c1'),(4478,141,'reasons_4_animate','0'),(4479,141,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(4480,141,'reasons_4_background_color','video'),(4481,141,'_reasons_4_background_color','field_5ffca2087dcc0'),(4482,141,'reasons_4_background_image',''),(4483,141,'_reasons_4_background_image','field_5ffca965f8d44'),(4484,141,'reasons_5_text','Reason'),(4485,141,'_reasons_5_text','field_5ffca05ea140c'),(4486,141,'reasons_5_number','6'),(4487,141,'_reasons_5_number','field_5ffca0a9a140d'),(4488,141,'reasons_5_title','More members means you pay less'),(4489,141,'_reasons_5_title','field_5ffca1c17dcbd'),(4490,141,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(4491,141,'_reasons_5_content','field_5ffca1d37dcbe'),(4492,141,'reasons_5_static',''),(4493,141,'_reasons_5_static','field_5ffca9f36c9c1'),(4494,141,'reasons_5_animate','0'),(4495,141,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(4496,141,'reasons_5_background_color','video'),(4497,141,'_reasons_5_background_color','field_5ffca2087dcc0'),(4498,141,'reasons_5_background_image',''),(4499,141,'_reasons_5_background_image','field_5ffca965f8d44'),(4500,141,'reasons_6_text','Reason'),(4501,141,'_reasons_6_text','field_5ffca05ea140c'),(4502,141,'reasons_6_number','7'),(4503,141,'_reasons_6_number','field_5ffca0a9a140d'),(4504,141,'reasons_6_title','Break your routine'),(4505,141,'_reasons_6_title','field_5ffca1c17dcbd'),(4506,141,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(4507,141,'_reasons_6_content','field_5ffca1d37dcbe'),(4508,141,'reasons_6_static','86'),(4509,141,'_reasons_6_static','field_5ffca9f36c9c1'),(4510,141,'reasons_6_animate','0'),(4511,141,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(4512,141,'reasons_6_background_color','darkgray'),(4513,141,'_reasons_6_background_color','field_5ffca2087dcc0'),(4514,141,'reasons_6_background_image',''),(4515,141,'_reasons_6_background_image','field_5ffca965f8d44'),(4516,141,'reasons_7_text','Reason'),(4517,141,'_reasons_7_text','field_5ffca05ea140c'),(4518,141,'reasons_7_number','8'),(4519,141,'_reasons_7_number','field_5ffca0a9a140d'),(4520,141,'reasons_7_title','Your pace, your training'),(4521,141,'_reasons_7_title','field_5ffca1c17dcbd'),(4522,141,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(4523,141,'_reasons_7_content','field_5ffca1d37dcbe'),(4524,141,'reasons_7_static','74'),(4525,141,'_reasons_7_static','field_5ffca9f36c9c1'),(4526,141,'reasons_7_animate','0'),(4527,141,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(4528,141,'reasons_7_background_color','white'),(4529,141,'_reasons_7_background_color','field_5ffca2087dcc0'),(4530,141,'reasons_7_background_image',''),(4531,141,'_reasons_7_background_image','field_5ffca965f8d44'),(4532,141,'reasons_8_text','Reason'),(4533,141,'_reasons_8_text','field_5ffca05ea140c'),(4534,141,'reasons_8_number','9'),(4535,141,'_reasons_8_number','field_5ffca0a9a140d'),(4536,141,'reasons_8_title','Expertly crafted workouts'),(4537,141,'_reasons_8_title','field_5ffca1c17dcbd'),(4538,141,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(4539,141,'_reasons_8_content','field_5ffca1d37dcbe'),(4540,141,'reasons_8_static','75'),(4541,141,'_reasons_8_static','field_5ffca9f36c9c1'),(4542,141,'reasons_8_animate','0'),(4543,141,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(4544,141,'reasons_8_background_color','lightgray3'),(4545,141,'_reasons_8_background_color','field_5ffca2087dcc0'),(4546,141,'reasons_8_background_image',''),(4547,141,'_reasons_8_background_image','field_5ffca965f8d44'),(4548,141,'reasons_9_text','Reason'),(4549,141,'_reasons_9_text','field_5ffca05ea140c'),(4550,141,'reasons_9_number','10'),(4551,141,'_reasons_9_number','field_5ffca0a9a140d'),(4552,141,'reasons_9_title','Convenient class times'),(4553,141,'_reasons_9_title','field_5ffca1c17dcbd'),(4554,141,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(4555,141,'_reasons_9_content','field_5ffca1d37dcbe'),(4556,141,'reasons_9_static','76'),(4557,141,'_reasons_9_static','field_5ffca9f36c9c1'),(4558,141,'reasons_9_animate','0'),(4559,141,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(4560,141,'reasons_9_background_color','darkgray'),(4561,141,'_reasons_9_background_color','field_5ffca2087dcc0'),(4562,141,'reasons_9_background_image',''),(4563,141,'_reasons_9_background_image','field_5ffca965f8d44'),(4564,141,'reasons','10'),(4565,141,'_reasons','field_5ffc9fa9a140a'),(4566,141,'reasons_1_second_image','59'),(4567,141,'_reasons_1_second_image','field_5ffcab35014a4'),(4568,141,'reasons_4_second_image','67'),(4569,141,'_reasons_4_second_image','field_5ffcab35014a4'),(4570,141,'reasons_6_second_image','72'),(4571,141,'_reasons_6_second_image','field_5ffcab35014a4'),(4572,141,'reasons_2_animated','82'),(4573,141,'_reasons_2_animated','field_5ffcaa376c9c3'),(4574,141,'reasons_4_background_image_static','69'),(4575,141,'_reasons_4_background_image_static','field_5ffca843bd901'),(4576,141,'reasons_4_background_image_animated','84'),(4577,141,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(4578,141,'reasons_5_background_image_static','70'),(4579,141,'_reasons_5_background_image_static','field_5ffca843bd901'),(4580,141,'reasons_5_background_image_animated','140'),(4581,141,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(4582,141,'video_text',''),(4583,141,'_video_text','field_5ffdc81396903'),(4584,141,'background_video',''),(4585,141,'_background_video','field_5ffdc987496e6'),(4586,141,'video',''),(4587,141,'_video','field_5ffdc82f96904'),(4588,142,'_wp_attached_file','2021/01/bg-video-tablet.jpg'),(4589,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2021/01/bg-video-tablet.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"bg-video-tablet-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-video-tablet-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:27:\"bg-video-tablet-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"bg-video-desktop\";a:5:{s:4:\"file\";s:28:\"bg-video-tablet-1440x500.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:500;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:43;s:2:\"x2\";i:768;s:2:\"y2\";i:309;s:14:\"original_width\";i:768;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:{}}}'),(4590,143,'_wp_attached_file','2021/01/oa-testimonies-hq.mp4'),(4591,143,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:45161981;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:38;s:16:\"length_formatted\";s:4:\"0:38\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;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:1608244425;}'),(4592,144,'title_gold','One Academy'),(4593,144,'_title_gold','field_5ffc850fff400'),(4594,144,'title_white','Virtual'),(4595,144,'_title_white','field_5ffc8523ff401'),(4596,144,'value','25'),(4597,144,'_value','field_5ffc87023f4a1'),(4598,144,'text_banner','1-Week Unlimited Virtual Classes'),(4599,144,'_text_banner','field_5ffc87313f4a2'),(4600,144,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(4601,144,'_link_button','field_5ffc87543f4a3'),(4602,144,'text_button_banner','Start Now'),(4603,144,'_text_button_banner','field_5ffc87833f4a4'),(4604,144,'text_button_scroll_top','Book Now'),(4605,144,'_text_button_scroll_top','field_5ffc87983f4a5'),(4606,144,'background_banner','78'),(4607,144,'_background_banner','field_5ffc85ebcc1e9'),(4608,144,'static_image','52'),(4609,144,'_static_image','field_5ffc85fdcc1ea'),(4610,144,'animated','1'),(4611,144,'_animated','field_5ffc8668cc1eb'),(4612,144,'animated_image','80'),(4613,144,'_animated_image','field_5ffc8683cc1ec'),(4614,144,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(4615,144,'_title_reasons','field_5ffc9f7220389'),(4616,144,'reasons_0_text','Reason'),(4617,144,'_reasons_0_text','field_5ffca05ea140c'),(4618,144,'reasons_0_number','1'),(4619,144,'_reasons_0_number','field_5ffca0a9a140d'),(4620,144,'reasons_0_title','Get ready to turn your home into your new gym'),(4621,144,'_reasons_0_title','field_5ffca1c17dcbd'),(4622,144,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(4623,144,'_reasons_0_content','field_5ffca1d37dcbe'),(4624,144,'reasons_0_static','54'),(4625,144,'_reasons_0_static','field_5ffca9f36c9c1'),(4626,144,'reasons_0_animate','0'),(4627,144,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(4628,144,'reasons_0_background_color','lightgray2'),(4629,144,'_reasons_0_background_color','field_5ffca2087dcc0'),(4630,144,'reasons_0_background_image','56'),(4631,144,'_reasons_0_background_image','field_5ffca965f8d44'),(4632,144,'reasons_1_text','Reason'),(4633,144,'_reasons_1_text','field_5ffca05ea140c'),(4634,144,'reasons_1_number','2'),(4635,144,'_reasons_1_number','field_5ffca0a9a140d'),(4636,144,'reasons_1_title','Toronto’s best gym'),(4637,144,'_reasons_1_title','field_5ffca1c17dcbd'),(4638,144,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(4639,144,'_reasons_1_content','field_5ffca1d37dcbe'),(4640,144,'reasons_1_static','58'),(4641,144,'_reasons_1_static','field_5ffca9f36c9c1'),(4642,144,'reasons_1_animate','0'),(4643,144,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(4644,144,'reasons_1_background_color','darkgray'),(4645,144,'_reasons_1_background_color','field_5ffca2087dcc0'),(4646,144,'reasons_1_background_image',''),(4647,144,'_reasons_1_background_image','field_5ffca965f8d44'),(4648,144,'reasons_2_text','Reason'),(4649,144,'_reasons_2_text','field_5ffca05ea140c'),(4650,144,'reasons_2_number','3'),(4651,144,'_reasons_2_number','field_5ffca0a9a140d'),(4652,144,'reasons_2_title','Virtual classes with live coaches'),(4653,144,'_reasons_2_title','field_5ffca1c17dcbd'),(4654,144,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(4655,144,'_reasons_2_content','field_5ffca1d37dcbe'),(4656,144,'reasons_2_static','61'),(4657,144,'_reasons_2_static','field_5ffca9f36c9c1'),(4658,144,'reasons_2_animate','1'),(4659,144,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(4660,144,'reasons_2_background_color','white'),(4661,144,'_reasons_2_background_color','field_5ffca2087dcc0'),(4662,144,'reasons_2_background_image',''),(4663,144,'_reasons_2_background_image','field_5ffca965f8d44'),(4664,144,'reasons_3_text','Reason'),(4665,144,'_reasons_3_text','field_5ffca05ea140c'),(4666,144,'reasons_3_number','4'),(4667,144,'_reasons_3_number','field_5ffca0a9a140d'),(4668,144,'reasons_3_title','One community'),(4669,144,'_reasons_3_title','field_5ffca1c17dcbd'),(4670,144,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(4671,144,'_reasons_3_content','field_5ffca1d37dcbe'),(4672,144,'reasons_3_static','64'),(4673,144,'_reasons_3_static','field_5ffca9f36c9c1'),(4674,144,'reasons_3_animate','0'),(4675,144,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(4676,144,'reasons_3_background_color','darkgray'),(4677,144,'_reasons_3_background_color','field_5ffca2087dcc0'),(4678,144,'reasons_3_background_image','65'),(4679,144,'_reasons_3_background_image','field_5ffca965f8d44'),(4680,144,'reasons_4_text','Reason'),(4681,144,'_reasons_4_text','field_5ffca05ea140c'),(4682,144,'reasons_4_number','5'),(4683,144,'_reasons_4_number','field_5ffca0a9a140d'),(4684,144,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(4685,144,'_reasons_4_title','field_5ffca1c17dcbd'),(4686,144,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(4687,144,'_reasons_4_content','field_5ffca1d37dcbe'),(4688,144,'reasons_4_static',''),(4689,144,'_reasons_4_static','field_5ffca9f36c9c1'),(4690,144,'reasons_4_animate','0'),(4691,144,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(4692,144,'reasons_4_background_color','video'),(4693,144,'_reasons_4_background_color','field_5ffca2087dcc0'),(4694,144,'reasons_4_background_image',''),(4695,144,'_reasons_4_background_image','field_5ffca965f8d44'),(4696,144,'reasons_5_text','Reason'),(4697,144,'_reasons_5_text','field_5ffca05ea140c'),(4698,144,'reasons_5_number','6'),(4699,144,'_reasons_5_number','field_5ffca0a9a140d'),(4700,144,'reasons_5_title','More members means you pay less'),(4701,144,'_reasons_5_title','field_5ffca1c17dcbd'),(4702,144,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(4703,144,'_reasons_5_content','field_5ffca1d37dcbe'),(4704,144,'reasons_5_static',''),(4705,144,'_reasons_5_static','field_5ffca9f36c9c1'),(4706,144,'reasons_5_animate','0'),(4707,144,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(4708,144,'reasons_5_background_color','video'),(4709,144,'_reasons_5_background_color','field_5ffca2087dcc0'),(4710,144,'reasons_5_background_image',''),(4711,144,'_reasons_5_background_image','field_5ffca965f8d44'),(4712,144,'reasons_6_text','Reason'),(4713,144,'_reasons_6_text','field_5ffca05ea140c'),(4714,144,'reasons_6_number','7'),(4715,144,'_reasons_6_number','field_5ffca0a9a140d'),(4716,144,'reasons_6_title','Break your routine'),(4717,144,'_reasons_6_title','field_5ffca1c17dcbd'),(4718,144,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(4719,144,'_reasons_6_content','field_5ffca1d37dcbe'),(4720,144,'reasons_6_static','86'),(4721,144,'_reasons_6_static','field_5ffca9f36c9c1'),(4722,144,'reasons_6_animate','0'),(4723,144,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(4724,144,'reasons_6_background_color','darkgray'),(4725,144,'_reasons_6_background_color','field_5ffca2087dcc0'),(4726,144,'reasons_6_background_image',''),(4727,144,'_reasons_6_background_image','field_5ffca965f8d44'),(4728,144,'reasons_7_text','Reason'),(4729,144,'_reasons_7_text','field_5ffca05ea140c'),(4730,144,'reasons_7_number','8'),(4731,144,'_reasons_7_number','field_5ffca0a9a140d'),(4732,144,'reasons_7_title','Your pace, your training'),(4733,144,'_reasons_7_title','field_5ffca1c17dcbd'),(4734,144,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(4735,144,'_reasons_7_content','field_5ffca1d37dcbe'),(4736,144,'reasons_7_static','74'),(4737,144,'_reasons_7_static','field_5ffca9f36c9c1'),(4738,144,'reasons_7_animate','0'),(4739,144,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(4740,144,'reasons_7_background_color','white'),(4741,144,'_reasons_7_background_color','field_5ffca2087dcc0'),(4742,144,'reasons_7_background_image',''),(4743,144,'_reasons_7_background_image','field_5ffca965f8d44'),(4744,144,'reasons_8_text','Reason'),(4745,144,'_reasons_8_text','field_5ffca05ea140c'),(4746,144,'reasons_8_number','9'),(4747,144,'_reasons_8_number','field_5ffca0a9a140d'),(4748,144,'reasons_8_title','Expertly crafted workouts'),(4749,144,'_reasons_8_title','field_5ffca1c17dcbd'),(4750,144,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(4751,144,'_reasons_8_content','field_5ffca1d37dcbe'),(4752,144,'reasons_8_static','75'),(4753,144,'_reasons_8_static','field_5ffca9f36c9c1'),(4754,144,'reasons_8_animate','0'),(4755,144,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(4756,144,'reasons_8_background_color','lightgray3'),(4757,144,'_reasons_8_background_color','field_5ffca2087dcc0'),(4758,144,'reasons_8_background_image',''),(4759,144,'_reasons_8_background_image','field_5ffca965f8d44'),(4760,144,'reasons_9_text','Reason'),(4761,144,'_reasons_9_text','field_5ffca05ea140c'),(4762,144,'reasons_9_number','10'),(4763,144,'_reasons_9_number','field_5ffca0a9a140d'),(4764,144,'reasons_9_title','Convenient class times'),(4765,144,'_reasons_9_title','field_5ffca1c17dcbd'),(4766,144,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(4767,144,'_reasons_9_content','field_5ffca1d37dcbe'),(4768,144,'reasons_9_static','76'),(4769,144,'_reasons_9_static','field_5ffca9f36c9c1'),(4770,144,'reasons_9_animate','0'),(4771,144,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(4772,144,'reasons_9_background_color','darkgray'),(4773,144,'_reasons_9_background_color','field_5ffca2087dcc0'),(4774,144,'reasons_9_background_image',''),(4775,144,'_reasons_9_background_image','field_5ffca965f8d44'),(4776,144,'reasons','10'),(4777,144,'_reasons','field_5ffc9fa9a140a'),(4778,144,'reasons_1_second_image','59'),(4779,144,'_reasons_1_second_image','field_5ffcab35014a4'),(4780,144,'reasons_4_second_image','67'),(4781,144,'_reasons_4_second_image','field_5ffcab35014a4'),(4782,144,'reasons_6_second_image','72'),(4783,144,'_reasons_6_second_image','field_5ffcab35014a4'),(4784,144,'reasons_2_animated','82'),(4785,144,'_reasons_2_animated','field_5ffcaa376c9c3'),(4786,144,'reasons_4_background_image_static','69'),(4787,144,'_reasons_4_background_image_static','field_5ffca843bd901'),(4788,144,'reasons_4_background_image_animated','84'),(4789,144,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(4790,144,'reasons_5_background_image_static','70'),(4791,144,'_reasons_5_background_image_static','field_5ffca843bd901'),(4792,144,'reasons_5_background_image_animated','140'),(4793,144,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(4794,144,'video_text','Don’t take our word for it, take theirs'),(4795,144,'_video_text','field_5ffdc81396903'),(4796,144,'background_video','142'),(4797,144,'_background_video','field_5ffdc987496e6'),(4798,144,'video','143'),(4799,144,'_video','field_5ffdc82f96904'),(4806,150,'title_gold',''),(4807,150,'_title_gold','field_5ffc850fff400'),(4808,150,'title_white','One Academy Virtual'),(4809,150,'_title_white','field_5ffc8523ff401'),(4810,150,'value','25'),(4811,150,'_value','field_5ffc87023f4a1'),(4812,150,'text_banner','1-Week Unlimited Virtual Classes'),(4813,150,'_text_banner','field_5ffc87313f4a2'),(4814,150,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(4815,150,'_link_button','field_5ffc87543f4a3'),(4816,150,'text_button_banner','Start Now'),(4817,150,'_text_button_banner','field_5ffc87833f4a4'),(4818,150,'text_button_scroll_top','Book Now'),(4819,150,'_text_button_scroll_top','field_5ffc87983f4a5'),(4820,150,'background_banner','148'),(4821,150,'_background_banner','field_5ffc85ebcc1e9'),(4822,150,'static_image','149'),(4823,150,'_static_image','field_5ffc85fdcc1ea'),(4824,150,'animated','0'),(4825,150,'_animated','field_5ffc8668cc1eb'),(4826,150,'animated_image','80'),(4827,150,'_animated_image','field_5ffc8683cc1ec'),(4828,150,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(4829,150,'_title_reasons','field_5ffc9f7220389'),(4830,150,'reasons_0_text','Reason'),(4831,150,'_reasons_0_text','field_5ffca05ea140c'),(4832,150,'reasons_0_number','1'),(4833,150,'_reasons_0_number','field_5ffca0a9a140d'),(4834,150,'reasons_0_title','Get ready to turn your home into your new gym'),(4835,150,'_reasons_0_title','field_5ffca1c17dcbd'),(4836,150,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(4837,150,'_reasons_0_content','field_5ffca1d37dcbe'),(4838,150,'reasons_0_static','54'),(4839,150,'_reasons_0_static','field_5ffca9f36c9c1'),(4840,150,'reasons_0_animate','0'),(4841,150,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(4842,150,'reasons_0_background_color','lightgray2'),(4843,150,'_reasons_0_background_color','field_5ffca2087dcc0'),(4844,150,'reasons_0_background_image','56'),(4845,150,'_reasons_0_background_image','field_5ffca965f8d44'),(4846,150,'reasons_1_text','Reason'),(4847,150,'_reasons_1_text','field_5ffca05ea140c'),(4848,150,'reasons_1_number','2'),(4849,150,'_reasons_1_number','field_5ffca0a9a140d'),(4850,150,'reasons_1_title','Toronto’s best gym'),(4851,150,'_reasons_1_title','field_5ffca1c17dcbd'),(4852,150,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(4853,150,'_reasons_1_content','field_5ffca1d37dcbe'),(4854,150,'reasons_1_static','58'),(4855,150,'_reasons_1_static','field_5ffca9f36c9c1'),(4856,150,'reasons_1_animate','0'),(4857,150,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(4858,150,'reasons_1_background_color','darkgray'),(4859,150,'_reasons_1_background_color','field_5ffca2087dcc0'),(4860,150,'reasons_1_background_image',''),(4861,150,'_reasons_1_background_image','field_5ffca965f8d44'),(4862,150,'reasons_2_text','Reason'),(4863,150,'_reasons_2_text','field_5ffca05ea140c'),(4864,150,'reasons_2_number','3'),(4865,150,'_reasons_2_number','field_5ffca0a9a140d'),(4866,150,'reasons_2_title','Virtual classes with live coaches'),(4867,150,'_reasons_2_title','field_5ffca1c17dcbd'),(4868,150,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(4869,150,'_reasons_2_content','field_5ffca1d37dcbe'),(4870,150,'reasons_2_static','61'),(4871,150,'_reasons_2_static','field_5ffca9f36c9c1'),(4872,150,'reasons_2_animate','1'),(4873,150,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(4874,150,'reasons_2_background_color','white'),(4875,150,'_reasons_2_background_color','field_5ffca2087dcc0'),(4876,150,'reasons_2_background_image',''),(4877,150,'_reasons_2_background_image','field_5ffca965f8d44'),(4878,150,'reasons_3_text','Reason'),(4879,150,'_reasons_3_text','field_5ffca05ea140c'),(4880,150,'reasons_3_number','4'),(4881,150,'_reasons_3_number','field_5ffca0a9a140d'),(4882,150,'reasons_3_title','One community'),(4883,150,'_reasons_3_title','field_5ffca1c17dcbd'),(4884,150,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(4885,150,'_reasons_3_content','field_5ffca1d37dcbe'),(4886,150,'reasons_3_static','64'),(4887,150,'_reasons_3_static','field_5ffca9f36c9c1'),(4888,150,'reasons_3_animate','0'),(4889,150,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(4890,150,'reasons_3_background_color','darkgray'),(4891,150,'_reasons_3_background_color','field_5ffca2087dcc0'),(4892,150,'reasons_3_background_image','65'),(4893,150,'_reasons_3_background_image','field_5ffca965f8d44'),(4894,150,'reasons_4_text','Reason'),(4895,150,'_reasons_4_text','field_5ffca05ea140c'),(4896,150,'reasons_4_number','5'),(4897,150,'_reasons_4_number','field_5ffca0a9a140d'),(4898,150,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(4899,150,'_reasons_4_title','field_5ffca1c17dcbd'),(4900,150,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(4901,150,'_reasons_4_content','field_5ffca1d37dcbe'),(4902,150,'reasons_4_static',''),(4903,150,'_reasons_4_static','field_5ffca9f36c9c1'),(4904,150,'reasons_4_animate','0'),(4905,150,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(4906,150,'reasons_4_background_color','video'),(4907,150,'_reasons_4_background_color','field_5ffca2087dcc0'),(4908,150,'reasons_4_background_image',''),(4909,150,'_reasons_4_background_image','field_5ffca965f8d44'),(4910,150,'reasons_5_text','Reason'),(4911,150,'_reasons_5_text','field_5ffca05ea140c'),(4912,150,'reasons_5_number','6'),(4913,150,'_reasons_5_number','field_5ffca0a9a140d'),(4914,150,'reasons_5_title','More members means you pay less'),(4915,150,'_reasons_5_title','field_5ffca1c17dcbd'),(4916,150,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(4917,150,'_reasons_5_content','field_5ffca1d37dcbe'),(4918,150,'reasons_5_static',''),(4919,150,'_reasons_5_static','field_5ffca9f36c9c1'),(4920,150,'reasons_5_animate','0'),(4921,150,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(4922,150,'reasons_5_background_color','video'),(4923,150,'_reasons_5_background_color','field_5ffca2087dcc0'),(4924,150,'reasons_5_background_image',''),(4925,150,'_reasons_5_background_image','field_5ffca965f8d44'),(4926,150,'reasons_6_text','Reason'),(4927,150,'_reasons_6_text','field_5ffca05ea140c'),(4928,150,'reasons_6_number','7'),(4929,150,'_reasons_6_number','field_5ffca0a9a140d'),(4930,150,'reasons_6_title','Break your routine'),(4931,150,'_reasons_6_title','field_5ffca1c17dcbd'),(4932,150,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(4933,150,'_reasons_6_content','field_5ffca1d37dcbe'),(4934,150,'reasons_6_static','86'),(4935,150,'_reasons_6_static','field_5ffca9f36c9c1'),(4936,150,'reasons_6_animate','0'),(4937,150,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(4938,150,'reasons_6_background_color','darkgray'),(4939,150,'_reasons_6_background_color','field_5ffca2087dcc0'),(4940,150,'reasons_6_background_image',''),(4941,150,'_reasons_6_background_image','field_5ffca965f8d44'),(4942,150,'reasons_7_text','Reason'),(4943,150,'_reasons_7_text','field_5ffca05ea140c'),(4944,150,'reasons_7_number','8'),(4945,150,'_reasons_7_number','field_5ffca0a9a140d'),(4946,150,'reasons_7_title','Your pace, your training'),(4947,150,'_reasons_7_title','field_5ffca1c17dcbd'),(4948,150,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(4949,150,'_reasons_7_content','field_5ffca1d37dcbe'),(4950,150,'reasons_7_static','74'),(4951,150,'_reasons_7_static','field_5ffca9f36c9c1'),(4952,150,'reasons_7_animate','0'),(4953,150,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(4954,150,'reasons_7_background_color','white'),(4955,150,'_reasons_7_background_color','field_5ffca2087dcc0'),(4956,150,'reasons_7_background_image',''),(4957,150,'_reasons_7_background_image','field_5ffca965f8d44'),(4958,150,'reasons_8_text','Reason'),(4959,150,'_reasons_8_text','field_5ffca05ea140c'),(4960,150,'reasons_8_number','9'),(4961,150,'_reasons_8_number','field_5ffca0a9a140d'),(4962,150,'reasons_8_title','Expertly crafted workouts'),(4963,150,'_reasons_8_title','field_5ffca1c17dcbd'),(4964,150,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(4965,150,'_reasons_8_content','field_5ffca1d37dcbe'),(4966,150,'reasons_8_static','75'),(4967,150,'_reasons_8_static','field_5ffca9f36c9c1'),(4968,150,'reasons_8_animate','0'),(4969,150,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(4970,150,'reasons_8_background_color','lightgray3'),(4971,150,'_reasons_8_background_color','field_5ffca2087dcc0'),(4972,150,'reasons_8_background_image',''),(4973,150,'_reasons_8_background_image','field_5ffca965f8d44'),(4974,150,'reasons_9_text','Reason'),(4975,150,'_reasons_9_text','field_5ffca05ea140c'),(4976,150,'reasons_9_number','10'),(4977,150,'_reasons_9_number','field_5ffca0a9a140d'),(4978,150,'reasons_9_title','Convenient class times'),(4979,150,'_reasons_9_title','field_5ffca1c17dcbd'),(4980,150,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(4981,150,'_reasons_9_content','field_5ffca1d37dcbe'),(4982,150,'reasons_9_static','76'),(4983,150,'_reasons_9_static','field_5ffca9f36c9c1'),(4984,150,'reasons_9_animate','0'),(4985,150,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(4986,150,'reasons_9_background_color','darkgray'),(4987,150,'_reasons_9_background_color','field_5ffca2087dcc0'),(4988,150,'reasons_9_background_image',''),(4989,150,'_reasons_9_background_image','field_5ffca965f8d44'),(4990,150,'reasons','10'),(4991,150,'_reasons','field_5ffc9fa9a140a'),(4992,150,'reasons_1_second_image','59'),(4993,150,'_reasons_1_second_image','field_5ffcab35014a4'),(4994,150,'reasons_4_second_image','67'),(4995,150,'_reasons_4_second_image','field_5ffcab35014a4'),(4996,150,'reasons_6_second_image','72'),(4997,150,'_reasons_6_second_image','field_5ffcab35014a4'),(4998,150,'reasons_2_animated','82'),(4999,150,'_reasons_2_animated','field_5ffcaa376c9c3'),(5000,150,'reasons_4_background_image_static','69'),(5001,150,'_reasons_4_background_image_static','field_5ffca843bd901'),(5002,150,'reasons_4_background_image_animated','84'),(5003,150,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(5004,150,'reasons_5_background_image_static','70'),(5005,150,'_reasons_5_background_image_static','field_5ffca843bd901'),(5006,150,'reasons_5_background_image_animated','140'),(5007,150,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(5008,150,'video_text','Don’t take our word for it, take theirs'),(5009,150,'_video_text','field_5ffdc81396903'),(5010,150,'background_video','142'),(5011,150,'_background_video','field_5ffdc987496e6'),(5012,150,'video','143'),(5013,150,'_video','field_5ffdc82f96904'),(5016,152,'title_gold',''),(5017,152,'_title_gold','field_5ffc850fff400'),(5018,152,'title_white','One Academy Virtual'),(5019,152,'_title_white','field_5ffc8523ff401'),(5020,152,'value','25'),(5021,152,'_value','field_5ffc87023f4a1'),(5022,152,'text_banner','1-Week Unlimited Virtual Classes'),(5023,152,'_text_banner','field_5ffc87313f4a2'),(5024,152,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(5025,152,'_link_button','field_5ffc87543f4a3'),(5026,152,'text_button_banner','Start Now'),(5027,152,'_text_button_banner','field_5ffc87833f4a4'),(5028,152,'text_button_scroll_top','Book Now'),(5029,152,'_text_button_scroll_top','field_5ffc87983f4a5'),(5030,152,'background_banner','148'),(5031,152,'_background_banner','field_5ffc85ebcc1e9'),(5032,152,'static_image','151'),(5033,152,'_static_image','field_5ffc85fdcc1ea'),(5034,152,'animated','0'),(5035,152,'_animated','field_5ffc8668cc1eb'),(5036,152,'animated_image','80'),(5037,152,'_animated_image','field_5ffc8683cc1ec'),(5038,152,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(5039,152,'_title_reasons','field_5ffc9f7220389'),(5040,152,'reasons_0_text','Reason'),(5041,152,'_reasons_0_text','field_5ffca05ea140c'),(5042,152,'reasons_0_number','1'),(5043,152,'_reasons_0_number','field_5ffca0a9a140d'),(5044,152,'reasons_0_title','Get ready to turn your home into your new gym'),(5045,152,'_reasons_0_title','field_5ffca1c17dcbd'),(5046,152,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(5047,152,'_reasons_0_content','field_5ffca1d37dcbe'),(5048,152,'reasons_0_static','54'),(5049,152,'_reasons_0_static','field_5ffca9f36c9c1'),(5050,152,'reasons_0_animate','0'),(5051,152,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(5052,152,'reasons_0_background_color','lightgray2'),(5053,152,'_reasons_0_background_color','field_5ffca2087dcc0'),(5054,152,'reasons_0_background_image','56'),(5055,152,'_reasons_0_background_image','field_5ffca965f8d44'),(5056,152,'reasons_1_text','Reason'),(5057,152,'_reasons_1_text','field_5ffca05ea140c'),(5058,152,'reasons_1_number','2'),(5059,152,'_reasons_1_number','field_5ffca0a9a140d'),(5060,152,'reasons_1_title','Toronto’s best gym'),(5061,152,'_reasons_1_title','field_5ffca1c17dcbd'),(5062,152,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(5063,152,'_reasons_1_content','field_5ffca1d37dcbe'),(5064,152,'reasons_1_static','58'),(5065,152,'_reasons_1_static','field_5ffca9f36c9c1'),(5066,152,'reasons_1_animate','0'),(5067,152,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(5068,152,'reasons_1_background_color','darkgray'),(5069,152,'_reasons_1_background_color','field_5ffca2087dcc0'),(5070,152,'reasons_1_background_image',''),(5071,152,'_reasons_1_background_image','field_5ffca965f8d44'),(5072,152,'reasons_2_text','Reason'),(5073,152,'_reasons_2_text','field_5ffca05ea140c'),(5074,152,'reasons_2_number','3'),(5075,152,'_reasons_2_number','field_5ffca0a9a140d'),(5076,152,'reasons_2_title','Virtual classes with live coaches'),(5077,152,'_reasons_2_title','field_5ffca1c17dcbd'),(5078,152,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(5079,152,'_reasons_2_content','field_5ffca1d37dcbe'),(5080,152,'reasons_2_static','61'),(5081,152,'_reasons_2_static','field_5ffca9f36c9c1'),(5082,152,'reasons_2_animate','1'),(5083,152,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(5084,152,'reasons_2_background_color','white'),(5085,152,'_reasons_2_background_color','field_5ffca2087dcc0'),(5086,152,'reasons_2_background_image',''),(5087,152,'_reasons_2_background_image','field_5ffca965f8d44'),(5088,152,'reasons_3_text','Reason'),(5089,152,'_reasons_3_text','field_5ffca05ea140c'),(5090,152,'reasons_3_number','4'),(5091,152,'_reasons_3_number','field_5ffca0a9a140d'),(5092,152,'reasons_3_title','One community'),(5093,152,'_reasons_3_title','field_5ffca1c17dcbd'),(5094,152,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(5095,152,'_reasons_3_content','field_5ffca1d37dcbe'),(5096,152,'reasons_3_static','64'),(5097,152,'_reasons_3_static','field_5ffca9f36c9c1'),(5098,152,'reasons_3_animate','0'),(5099,152,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(5100,152,'reasons_3_background_color','darkgray'),(5101,152,'_reasons_3_background_color','field_5ffca2087dcc0'),(5102,152,'reasons_3_background_image','65'),(5103,152,'_reasons_3_background_image','field_5ffca965f8d44'),(5104,152,'reasons_4_text','Reason'),(5105,152,'_reasons_4_text','field_5ffca05ea140c'),(5106,152,'reasons_4_number','5'),(5107,152,'_reasons_4_number','field_5ffca0a9a140d'),(5108,152,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(5109,152,'_reasons_4_title','field_5ffca1c17dcbd'),(5110,152,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(5111,152,'_reasons_4_content','field_5ffca1d37dcbe'),(5112,152,'reasons_4_static',''),(5113,152,'_reasons_4_static','field_5ffca9f36c9c1'),(5114,152,'reasons_4_animate','0'),(5115,152,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(5116,152,'reasons_4_background_color','video'),(5117,152,'_reasons_4_background_color','field_5ffca2087dcc0'),(5118,152,'reasons_4_background_image',''),(5119,152,'_reasons_4_background_image','field_5ffca965f8d44'),(5120,152,'reasons_5_text','Reason'),(5121,152,'_reasons_5_text','field_5ffca05ea140c'),(5122,152,'reasons_5_number','6'),(5123,152,'_reasons_5_number','field_5ffca0a9a140d'),(5124,152,'reasons_5_title','More members means you pay less'),(5125,152,'_reasons_5_title','field_5ffca1c17dcbd'),(5126,152,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(5127,152,'_reasons_5_content','field_5ffca1d37dcbe'),(5128,152,'reasons_5_static',''),(5129,152,'_reasons_5_static','field_5ffca9f36c9c1'),(5130,152,'reasons_5_animate','0'),(5131,152,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(5132,152,'reasons_5_background_color','video'),(5133,152,'_reasons_5_background_color','field_5ffca2087dcc0'),(5134,152,'reasons_5_background_image',''),(5135,152,'_reasons_5_background_image','field_5ffca965f8d44'),(5136,152,'reasons_6_text','Reason'),(5137,152,'_reasons_6_text','field_5ffca05ea140c'),(5138,152,'reasons_6_number','7'),(5139,152,'_reasons_6_number','field_5ffca0a9a140d'),(5140,152,'reasons_6_title','Break your routine'),(5141,152,'_reasons_6_title','field_5ffca1c17dcbd'),(5142,152,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(5143,152,'_reasons_6_content','field_5ffca1d37dcbe'),(5144,152,'reasons_6_static','86'),(5145,152,'_reasons_6_static','field_5ffca9f36c9c1'),(5146,152,'reasons_6_animate','0'),(5147,152,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(5148,152,'reasons_6_background_color','darkgray'),(5149,152,'_reasons_6_background_color','field_5ffca2087dcc0'),(5150,152,'reasons_6_background_image',''),(5151,152,'_reasons_6_background_image','field_5ffca965f8d44'),(5152,152,'reasons_7_text','Reason'),(5153,152,'_reasons_7_text','field_5ffca05ea140c'),(5154,152,'reasons_7_number','8'),(5155,152,'_reasons_7_number','field_5ffca0a9a140d'),(5156,152,'reasons_7_title','Your pace, your training'),(5157,152,'_reasons_7_title','field_5ffca1c17dcbd'),(5158,152,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(5159,152,'_reasons_7_content','field_5ffca1d37dcbe'),(5160,152,'reasons_7_static','74'),(5161,152,'_reasons_7_static','field_5ffca9f36c9c1'),(5162,152,'reasons_7_animate','0'),(5163,152,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(5164,152,'reasons_7_background_color','white'),(5165,152,'_reasons_7_background_color','field_5ffca2087dcc0'),(5166,152,'reasons_7_background_image',''),(5167,152,'_reasons_7_background_image','field_5ffca965f8d44'),(5168,152,'reasons_8_text','Reason'),(5169,152,'_reasons_8_text','field_5ffca05ea140c'),(5170,152,'reasons_8_number','9'),(5171,152,'_reasons_8_number','field_5ffca0a9a140d'),(5172,152,'reasons_8_title','Expertly crafted workouts'),(5173,152,'_reasons_8_title','field_5ffca1c17dcbd'),(5174,152,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(5175,152,'_reasons_8_content','field_5ffca1d37dcbe'),(5176,152,'reasons_8_static','75'),(5177,152,'_reasons_8_static','field_5ffca9f36c9c1'),(5178,152,'reasons_8_animate','0'),(5179,152,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(5180,152,'reasons_8_background_color','lightgray3'),(5181,152,'_reasons_8_background_color','field_5ffca2087dcc0'),(5182,152,'reasons_8_background_image',''),(5183,152,'_reasons_8_background_image','field_5ffca965f8d44'),(5184,152,'reasons_9_text','Reason'),(5185,152,'_reasons_9_text','field_5ffca05ea140c'),(5186,152,'reasons_9_number','10'),(5187,152,'_reasons_9_number','field_5ffca0a9a140d'),(5188,152,'reasons_9_title','Convenient class times'),(5189,152,'_reasons_9_title','field_5ffca1c17dcbd'),(5190,152,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(5191,152,'_reasons_9_content','field_5ffca1d37dcbe'),(5192,152,'reasons_9_static','76'),(5193,152,'_reasons_9_static','field_5ffca9f36c9c1'),(5194,152,'reasons_9_animate','0'),(5195,152,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(5196,152,'reasons_9_background_color','darkgray'),(5197,152,'_reasons_9_background_color','field_5ffca2087dcc0'),(5198,152,'reasons_9_background_image',''),(5199,152,'_reasons_9_background_image','field_5ffca965f8d44'),(5200,152,'reasons','10'),(5201,152,'_reasons','field_5ffc9fa9a140a'),(5202,152,'reasons_1_second_image','59'),(5203,152,'_reasons_1_second_image','field_5ffcab35014a4'),(5204,152,'reasons_4_second_image','67'),(5205,152,'_reasons_4_second_image','field_5ffcab35014a4'),(5206,152,'reasons_6_second_image','72'),(5207,152,'_reasons_6_second_image','field_5ffcab35014a4'),(5208,152,'reasons_2_animated','82'),(5209,152,'_reasons_2_animated','field_5ffcaa376c9c3'),(5210,152,'reasons_4_background_image_static','69'),(5211,152,'_reasons_4_background_image_static','field_5ffca843bd901'),(5212,152,'reasons_4_background_image_animated','84'),(5213,152,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(5214,152,'reasons_5_background_image_static','70'),(5215,152,'_reasons_5_background_image_static','field_5ffca843bd901'),(5216,152,'reasons_5_background_image_animated','140'),(5217,152,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(5218,152,'video_text','Don’t take our word for it, take theirs'),(5219,152,'_video_text','field_5ffdc81396903'),(5220,152,'background_video','142'),(5221,152,'_background_video','field_5ffdc987496e6'),(5222,152,'video','143'),(5223,152,'_video','field_5ffdc82f96904'),(5228,155,'title_gold',''),(5229,155,'_title_gold','field_5ffc850fff400'),(5230,155,'title_white','One Academy Virtual'),(5231,155,'_title_white','field_5ffc8523ff401'),(5232,155,'value','25'),(5233,155,'_value','field_5ffc87023f4a1'),(5234,155,'text_banner','1-Week Unlimited Virtual Classes'),(5235,155,'_text_banner','field_5ffc87313f4a2'),(5236,155,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(5237,155,'_link_button','field_5ffc87543f4a3'),(5238,155,'text_button_banner','Start Now'),(5239,155,'_text_button_banner','field_5ffc87833f4a4'),(5240,155,'text_button_scroll_top','Book Now'),(5241,155,'_text_button_scroll_top','field_5ffc87983f4a5'),(5242,155,'background_banner','153'),(5243,155,'_background_banner','field_5ffc85ebcc1e9'),(5244,155,'static_image','154'),(5245,155,'_static_image','field_5ffc85fdcc1ea'),(5246,155,'animated','0'),(5247,155,'_animated','field_5ffc8668cc1eb'),(5248,155,'animated_image','80'),(5249,155,'_animated_image','field_5ffc8683cc1ec'),(5250,155,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(5251,155,'_title_reasons','field_5ffc9f7220389'),(5252,155,'reasons_0_text','Reason'),(5253,155,'_reasons_0_text','field_5ffca05ea140c'),(5254,155,'reasons_0_number','1'),(5255,155,'_reasons_0_number','field_5ffca0a9a140d'),(5256,155,'reasons_0_title','Get ready to turn your home into your new gym'),(5257,155,'_reasons_0_title','field_5ffca1c17dcbd'),(5258,155,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(5259,155,'_reasons_0_content','field_5ffca1d37dcbe'),(5260,155,'reasons_0_static','54'),(5261,155,'_reasons_0_static','field_5ffca9f36c9c1'),(5262,155,'reasons_0_animate','0'),(5263,155,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(5264,155,'reasons_0_background_color','lightgray2'),(5265,155,'_reasons_0_background_color','field_5ffca2087dcc0'),(5266,155,'reasons_0_background_image','56'),(5267,155,'_reasons_0_background_image','field_5ffca965f8d44'),(5268,155,'reasons_1_text','Reason'),(5269,155,'_reasons_1_text','field_5ffca05ea140c'),(5270,155,'reasons_1_number','2'),(5271,155,'_reasons_1_number','field_5ffca0a9a140d'),(5272,155,'reasons_1_title','Toronto’s best gym'),(5273,155,'_reasons_1_title','field_5ffca1c17dcbd'),(5274,155,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(5275,155,'_reasons_1_content','field_5ffca1d37dcbe'),(5276,155,'reasons_1_static','58'),(5277,155,'_reasons_1_static','field_5ffca9f36c9c1'),(5278,155,'reasons_1_animate','0'),(5279,155,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(5280,155,'reasons_1_background_color','darkgray'),(5281,155,'_reasons_1_background_color','field_5ffca2087dcc0'),(5282,155,'reasons_1_background_image',''),(5283,155,'_reasons_1_background_image','field_5ffca965f8d44'),(5284,155,'reasons_2_text','Reason'),(5285,155,'_reasons_2_text','field_5ffca05ea140c'),(5286,155,'reasons_2_number','3'),(5287,155,'_reasons_2_number','field_5ffca0a9a140d'),(5288,155,'reasons_2_title','Virtual classes with live coaches'),(5289,155,'_reasons_2_title','field_5ffca1c17dcbd'),(5290,155,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(5291,155,'_reasons_2_content','field_5ffca1d37dcbe'),(5292,155,'reasons_2_static','61'),(5293,155,'_reasons_2_static','field_5ffca9f36c9c1'),(5294,155,'reasons_2_animate','1'),(5295,155,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(5296,155,'reasons_2_background_color','white'),(5297,155,'_reasons_2_background_color','field_5ffca2087dcc0'),(5298,155,'reasons_2_background_image',''),(5299,155,'_reasons_2_background_image','field_5ffca965f8d44'),(5300,155,'reasons_3_text','Reason'),(5301,155,'_reasons_3_text','field_5ffca05ea140c'),(5302,155,'reasons_3_number','4'),(5303,155,'_reasons_3_number','field_5ffca0a9a140d'),(5304,155,'reasons_3_title','One community'),(5305,155,'_reasons_3_title','field_5ffca1c17dcbd'),(5306,155,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(5307,155,'_reasons_3_content','field_5ffca1d37dcbe'),(5308,155,'reasons_3_static','64'),(5309,155,'_reasons_3_static','field_5ffca9f36c9c1'),(5310,155,'reasons_3_animate','0'),(5311,155,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(5312,155,'reasons_3_background_color','darkgray'),(5313,155,'_reasons_3_background_color','field_5ffca2087dcc0'),(5314,155,'reasons_3_background_image','65'),(5315,155,'_reasons_3_background_image','field_5ffca965f8d44'),(5316,155,'reasons_4_text','Reason'),(5317,155,'_reasons_4_text','field_5ffca05ea140c'),(5318,155,'reasons_4_number','5'),(5319,155,'_reasons_4_number','field_5ffca0a9a140d'),(5320,155,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(5321,155,'_reasons_4_title','field_5ffca1c17dcbd'),(5322,155,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(5323,155,'_reasons_4_content','field_5ffca1d37dcbe'),(5324,155,'reasons_4_static',''),(5325,155,'_reasons_4_static','field_5ffca9f36c9c1'),(5326,155,'reasons_4_animate','0'),(5327,155,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(5328,155,'reasons_4_background_color','video'),(5329,155,'_reasons_4_background_color','field_5ffca2087dcc0'),(5330,155,'reasons_4_background_image',''),(5331,155,'_reasons_4_background_image','field_5ffca965f8d44'),(5332,155,'reasons_5_text','Reason'),(5333,155,'_reasons_5_text','field_5ffca05ea140c'),(5334,155,'reasons_5_number','6'),(5335,155,'_reasons_5_number','field_5ffca0a9a140d'),(5336,155,'reasons_5_title','More members means you pay less'),(5337,155,'_reasons_5_title','field_5ffca1c17dcbd'),(5338,155,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(5339,155,'_reasons_5_content','field_5ffca1d37dcbe'),(5340,155,'reasons_5_static',''),(5341,155,'_reasons_5_static','field_5ffca9f36c9c1'),(5342,155,'reasons_5_animate','0'),(5343,155,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(5344,155,'reasons_5_background_color','video'),(5345,155,'_reasons_5_background_color','field_5ffca2087dcc0'),(5346,155,'reasons_5_background_image',''),(5347,155,'_reasons_5_background_image','field_5ffca965f8d44'),(5348,155,'reasons_6_text','Reason'),(5349,155,'_reasons_6_text','field_5ffca05ea140c'),(5350,155,'reasons_6_number','7'),(5351,155,'_reasons_6_number','field_5ffca0a9a140d'),(5352,155,'reasons_6_title','Break your routine'),(5353,155,'_reasons_6_title','field_5ffca1c17dcbd'),(5354,155,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(5355,155,'_reasons_6_content','field_5ffca1d37dcbe'),(5356,155,'reasons_6_static','86'),(5357,155,'_reasons_6_static','field_5ffca9f36c9c1'),(5358,155,'reasons_6_animate','0'),(5359,155,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(5360,155,'reasons_6_background_color','darkgray'),(5361,155,'_reasons_6_background_color','field_5ffca2087dcc0'),(5362,155,'reasons_6_background_image',''),(5363,155,'_reasons_6_background_image','field_5ffca965f8d44'),(5364,155,'reasons_7_text','Reason'),(5365,155,'_reasons_7_text','field_5ffca05ea140c'),(5366,155,'reasons_7_number','8'),(5367,155,'_reasons_7_number','field_5ffca0a9a140d'),(5368,155,'reasons_7_title','Your pace, your training'),(5369,155,'_reasons_7_title','field_5ffca1c17dcbd'),(5370,155,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(5371,155,'_reasons_7_content','field_5ffca1d37dcbe'),(5372,155,'reasons_7_static','74'),(5373,155,'_reasons_7_static','field_5ffca9f36c9c1'),(5374,155,'reasons_7_animate','0'),(5375,155,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(5376,155,'reasons_7_background_color','white'),(5377,155,'_reasons_7_background_color','field_5ffca2087dcc0'),(5378,155,'reasons_7_background_image',''),(5379,155,'_reasons_7_background_image','field_5ffca965f8d44'),(5380,155,'reasons_8_text','Reason'),(5381,155,'_reasons_8_text','field_5ffca05ea140c'),(5382,155,'reasons_8_number','9'),(5383,155,'_reasons_8_number','field_5ffca0a9a140d'),(5384,155,'reasons_8_title','Expertly crafted workouts'),(5385,155,'_reasons_8_title','field_5ffca1c17dcbd'),(5386,155,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(5387,155,'_reasons_8_content','field_5ffca1d37dcbe'),(5388,155,'reasons_8_static','75'),(5389,155,'_reasons_8_static','field_5ffca9f36c9c1'),(5390,155,'reasons_8_animate','0'),(5391,155,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(5392,155,'reasons_8_background_color','lightgray3'),(5393,155,'_reasons_8_background_color','field_5ffca2087dcc0'),(5394,155,'reasons_8_background_image',''),(5395,155,'_reasons_8_background_image','field_5ffca965f8d44'),(5396,155,'reasons_9_text','Reason'),(5397,155,'_reasons_9_text','field_5ffca05ea140c'),(5398,155,'reasons_9_number','10'),(5399,155,'_reasons_9_number','field_5ffca0a9a140d'),(5400,155,'reasons_9_title','Convenient class times'),(5401,155,'_reasons_9_title','field_5ffca1c17dcbd'),(5402,155,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(5403,155,'_reasons_9_content','field_5ffca1d37dcbe'),(5404,155,'reasons_9_static','76'),(5405,155,'_reasons_9_static','field_5ffca9f36c9c1'),(5406,155,'reasons_9_animate','0'),(5407,155,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(5408,155,'reasons_9_background_color','darkgray'),(5409,155,'_reasons_9_background_color','field_5ffca2087dcc0'),(5410,155,'reasons_9_background_image',''),(5411,155,'_reasons_9_background_image','field_5ffca965f8d44'),(5412,155,'reasons','10'),(5413,155,'_reasons','field_5ffc9fa9a140a'),(5414,155,'reasons_1_second_image','59'),(5415,155,'_reasons_1_second_image','field_5ffcab35014a4'),(5416,155,'reasons_4_second_image','67'),(5417,155,'_reasons_4_second_image','field_5ffcab35014a4'),(5418,155,'reasons_6_second_image','72'),(5419,155,'_reasons_6_second_image','field_5ffcab35014a4'),(5420,155,'reasons_2_animated','82'),(5421,155,'_reasons_2_animated','field_5ffcaa376c9c3'),(5422,155,'reasons_4_background_image_static','69'),(5423,155,'_reasons_4_background_image_static','field_5ffca843bd901'),(5424,155,'reasons_4_background_image_animated','84'),(5425,155,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(5426,155,'reasons_5_background_image_static','70'),(5427,155,'_reasons_5_background_image_static','field_5ffca843bd901'),(5428,155,'reasons_5_background_image_animated','140'),(5429,155,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(5430,155,'video_text','Don’t take our word for it, take theirs'),(5431,155,'_video_text','field_5ffdc81396903'),(5432,155,'background_video','142'),(5433,155,'_background_video','field_5ffdc987496e6'),(5434,155,'video','143'),(5435,155,'_video','field_5ffdc82f96904'),(5438,157,'title_gold',''),(5439,157,'_title_gold','field_5ffc850fff400'),(5440,157,'title_white','One Academy Virtual'),(5441,157,'_title_white','field_5ffc8523ff401'),(5442,157,'value','25'),(5443,157,'_value','field_5ffc87023f4a1'),(5444,157,'text_banner','1-Week Unlimited Virtual Classes'),(5445,157,'_text_banner','field_5ffc87313f4a2'),(5446,157,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(5447,157,'_link_button','field_5ffc87543f4a3'),(5448,157,'text_button_banner','Start Now'),(5449,157,'_text_button_banner','field_5ffc87833f4a4'),(5450,157,'text_button_scroll_top','Book Now'),(5451,157,'_text_button_scroll_top','field_5ffc87983f4a5'),(5452,157,'background_banner','153'),(5453,157,'_background_banner','field_5ffc85ebcc1e9'),(5454,157,'static_image','156'),(5455,157,'_static_image','field_5ffc85fdcc1ea'),(5456,157,'animated','0'),(5457,157,'_animated','field_5ffc8668cc1eb'),(5458,157,'animated_image','80'),(5459,157,'_animated_image','field_5ffc8683cc1ec'),(5460,157,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(5461,157,'_title_reasons','field_5ffc9f7220389'),(5462,157,'reasons_0_text','Reason'),(5463,157,'_reasons_0_text','field_5ffca05ea140c'),(5464,157,'reasons_0_number','1'),(5465,157,'_reasons_0_number','field_5ffca0a9a140d'),(5466,157,'reasons_0_title','Get ready to turn your home into your new gym'),(5467,157,'_reasons_0_title','field_5ffca1c17dcbd'),(5468,157,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(5469,157,'_reasons_0_content','field_5ffca1d37dcbe'),(5470,157,'reasons_0_static','54'),(5471,157,'_reasons_0_static','field_5ffca9f36c9c1'),(5472,157,'reasons_0_animate','0'),(5473,157,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(5474,157,'reasons_0_background_color','lightgray2'),(5475,157,'_reasons_0_background_color','field_5ffca2087dcc0'),(5476,157,'reasons_0_background_image','56'),(5477,157,'_reasons_0_background_image','field_5ffca965f8d44'),(5478,157,'reasons_1_text','Reason'),(5479,157,'_reasons_1_text','field_5ffca05ea140c'),(5480,157,'reasons_1_number','2'),(5481,157,'_reasons_1_number','field_5ffca0a9a140d'),(5482,157,'reasons_1_title','Toronto’s best gym'),(5483,157,'_reasons_1_title','field_5ffca1c17dcbd'),(5484,157,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(5485,157,'_reasons_1_content','field_5ffca1d37dcbe'),(5486,157,'reasons_1_static','58'),(5487,157,'_reasons_1_static','field_5ffca9f36c9c1'),(5488,157,'reasons_1_animate','0'),(5489,157,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(5490,157,'reasons_1_background_color','darkgray'),(5491,157,'_reasons_1_background_color','field_5ffca2087dcc0'),(5492,157,'reasons_1_background_image',''),(5493,157,'_reasons_1_background_image','field_5ffca965f8d44'),(5494,157,'reasons_2_text','Reason'),(5495,157,'_reasons_2_text','field_5ffca05ea140c'),(5496,157,'reasons_2_number','3'),(5497,157,'_reasons_2_number','field_5ffca0a9a140d'),(5498,157,'reasons_2_title','Virtual classes with live coaches'),(5499,157,'_reasons_2_title','field_5ffca1c17dcbd'),(5500,157,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(5501,157,'_reasons_2_content','field_5ffca1d37dcbe'),(5502,157,'reasons_2_static','61'),(5503,157,'_reasons_2_static','field_5ffca9f36c9c1'),(5504,157,'reasons_2_animate','1'),(5505,157,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(5506,157,'reasons_2_background_color','white'),(5507,157,'_reasons_2_background_color','field_5ffca2087dcc0'),(5508,157,'reasons_2_background_image',''),(5509,157,'_reasons_2_background_image','field_5ffca965f8d44'),(5510,157,'reasons_3_text','Reason'),(5511,157,'_reasons_3_text','field_5ffca05ea140c'),(5512,157,'reasons_3_number','4'),(5513,157,'_reasons_3_number','field_5ffca0a9a140d'),(5514,157,'reasons_3_title','One community'),(5515,157,'_reasons_3_title','field_5ffca1c17dcbd'),(5516,157,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(5517,157,'_reasons_3_content','field_5ffca1d37dcbe'),(5518,157,'reasons_3_static','64'),(5519,157,'_reasons_3_static','field_5ffca9f36c9c1'),(5520,157,'reasons_3_animate','0'),(5521,157,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(5522,157,'reasons_3_background_color','darkgray'),(5523,157,'_reasons_3_background_color','field_5ffca2087dcc0'),(5524,157,'reasons_3_background_image','65'),(5525,157,'_reasons_3_background_image','field_5ffca965f8d44'),(5526,157,'reasons_4_text','Reason'),(5527,157,'_reasons_4_text','field_5ffca05ea140c'),(5528,157,'reasons_4_number','5'),(5529,157,'_reasons_4_number','field_5ffca0a9a140d'),(5530,157,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(5531,157,'_reasons_4_title','field_5ffca1c17dcbd'),(5532,157,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(5533,157,'_reasons_4_content','field_5ffca1d37dcbe'),(5534,157,'reasons_4_static',''),(5535,157,'_reasons_4_static','field_5ffca9f36c9c1'),(5536,157,'reasons_4_animate','0'),(5537,157,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(5538,157,'reasons_4_background_color','video'),(5539,157,'_reasons_4_background_color','field_5ffca2087dcc0'),(5540,157,'reasons_4_background_image',''),(5541,157,'_reasons_4_background_image','field_5ffca965f8d44'),(5542,157,'reasons_5_text','Reason'),(5543,157,'_reasons_5_text','field_5ffca05ea140c'),(5544,157,'reasons_5_number','6'),(5545,157,'_reasons_5_number','field_5ffca0a9a140d'),(5546,157,'reasons_5_title','More members means you pay less'),(5547,157,'_reasons_5_title','field_5ffca1c17dcbd'),(5548,157,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(5549,157,'_reasons_5_content','field_5ffca1d37dcbe'),(5550,157,'reasons_5_static',''),(5551,157,'_reasons_5_static','field_5ffca9f36c9c1'),(5552,157,'reasons_5_animate','0'),(5553,157,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(5554,157,'reasons_5_background_color','video'),(5555,157,'_reasons_5_background_color','field_5ffca2087dcc0'),(5556,157,'reasons_5_background_image',''),(5557,157,'_reasons_5_background_image','field_5ffca965f8d44'),(5558,157,'reasons_6_text','Reason'),(5559,157,'_reasons_6_text','field_5ffca05ea140c'),(5560,157,'reasons_6_number','7'),(5561,157,'_reasons_6_number','field_5ffca0a9a140d'),(5562,157,'reasons_6_title','Break your routine'),(5563,157,'_reasons_6_title','field_5ffca1c17dcbd'),(5564,157,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(5565,157,'_reasons_6_content','field_5ffca1d37dcbe'),(5566,157,'reasons_6_static','86'),(5567,157,'_reasons_6_static','field_5ffca9f36c9c1'),(5568,157,'reasons_6_animate','0'),(5569,157,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(5570,157,'reasons_6_background_color','darkgray'),(5571,157,'_reasons_6_background_color','field_5ffca2087dcc0'),(5572,157,'reasons_6_background_image',''),(5573,157,'_reasons_6_background_image','field_5ffca965f8d44'),(5574,157,'reasons_7_text','Reason'),(5575,157,'_reasons_7_text','field_5ffca05ea140c'),(5576,157,'reasons_7_number','8'),(5577,157,'_reasons_7_number','field_5ffca0a9a140d'),(5578,157,'reasons_7_title','Your pace, your training'),(5579,157,'_reasons_7_title','field_5ffca1c17dcbd'),(5580,157,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(5581,157,'_reasons_7_content','field_5ffca1d37dcbe'),(5582,157,'reasons_7_static','74'),(5583,157,'_reasons_7_static','field_5ffca9f36c9c1'),(5584,157,'reasons_7_animate','0'),(5585,157,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(5586,157,'reasons_7_background_color','white'),(5587,157,'_reasons_7_background_color','field_5ffca2087dcc0'),(5588,157,'reasons_7_background_image',''),(5589,157,'_reasons_7_background_image','field_5ffca965f8d44'),(5590,157,'reasons_8_text','Reason'),(5591,157,'_reasons_8_text','field_5ffca05ea140c'),(5592,157,'reasons_8_number','9'),(5593,157,'_reasons_8_number','field_5ffca0a9a140d'),(5594,157,'reasons_8_title','Expertly crafted workouts'),(5595,157,'_reasons_8_title','field_5ffca1c17dcbd'),(5596,157,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(5597,157,'_reasons_8_content','field_5ffca1d37dcbe'),(5598,157,'reasons_8_static','75'),(5599,157,'_reasons_8_static','field_5ffca9f36c9c1'),(5600,157,'reasons_8_animate','0'),(5601,157,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(5602,157,'reasons_8_background_color','lightgray3'),(5603,157,'_reasons_8_background_color','field_5ffca2087dcc0'),(5604,157,'reasons_8_background_image',''),(5605,157,'_reasons_8_background_image','field_5ffca965f8d44'),(5606,157,'reasons_9_text','Reason'),(5607,157,'_reasons_9_text','field_5ffca05ea140c'),(5608,157,'reasons_9_number','10'),(5609,157,'_reasons_9_number','field_5ffca0a9a140d'),(5610,157,'reasons_9_title','Convenient class times'),(5611,157,'_reasons_9_title','field_5ffca1c17dcbd'),(5612,157,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(5613,157,'_reasons_9_content','field_5ffca1d37dcbe'),(5614,157,'reasons_9_static','76'),(5615,157,'_reasons_9_static','field_5ffca9f36c9c1'),(5616,157,'reasons_9_animate','0'),(5617,157,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(5618,157,'reasons_9_background_color','darkgray'),(5619,157,'_reasons_9_background_color','field_5ffca2087dcc0'),(5620,157,'reasons_9_background_image',''),(5621,157,'_reasons_9_background_image','field_5ffca965f8d44'),(5622,157,'reasons','10'),(5623,157,'_reasons','field_5ffc9fa9a140a'),(5624,157,'reasons_1_second_image','59'),(5625,157,'_reasons_1_second_image','field_5ffcab35014a4'),(5626,157,'reasons_4_second_image','67'),(5627,157,'_reasons_4_second_image','field_5ffcab35014a4'),(5628,157,'reasons_6_second_image','72'),(5629,157,'_reasons_6_second_image','field_5ffcab35014a4'),(5630,157,'reasons_2_animated','82'),(5631,157,'_reasons_2_animated','field_5ffcaa376c9c3'),(5632,157,'reasons_4_background_image_static','69'),(5633,157,'_reasons_4_background_image_static','field_5ffca843bd901'),(5634,157,'reasons_4_background_image_animated','84'),(5635,157,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(5636,157,'reasons_5_background_image_static','70'),(5637,157,'_reasons_5_background_image_static','field_5ffca843bd901'),(5638,157,'reasons_5_background_image_animated','140'),(5639,157,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(5640,157,'video_text','Don’t take our word for it, take theirs'),(5641,157,'_video_text','field_5ffdc81396903'),(5642,157,'background_video','142'),(5643,157,'_background_video','field_5ffdc987496e6'),(5644,157,'video','143'),(5645,157,'_video','field_5ffdc82f96904'),(5648,159,'title_gold',''),(5649,159,'_title_gold','field_5ffc850fff400'),(5650,159,'title_white','One Academy Virtual'),(5651,159,'_title_white','field_5ffc8523ff401'),(5652,159,'value','25'),(5653,159,'_value','field_5ffc87023f4a1'),(5654,159,'text_banner','1-Week Unlimited Virtual Classes'),(5655,159,'_text_banner','field_5ffc87313f4a2'),(5656,159,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(5657,159,'_link_button','field_5ffc87543f4a3'),(5658,159,'text_button_banner','Start Now'),(5659,159,'_text_button_banner','field_5ffc87833f4a4'),(5660,159,'text_button_scroll_top','Book Now'),(5661,159,'_text_button_scroll_top','field_5ffc87983f4a5'),(5662,159,'background_banner','153'),(5663,159,'_background_banner','field_5ffc85ebcc1e9'),(5664,159,'static_image','158'),(5665,159,'_static_image','field_5ffc85fdcc1ea'),(5666,159,'animated','0'),(5667,159,'_animated','field_5ffc8668cc1eb'),(5668,159,'animated_image','80'),(5669,159,'_animated_image','field_5ffc8683cc1ec'),(5670,159,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(5671,159,'_title_reasons','field_5ffc9f7220389'),(5672,159,'reasons_0_text','Reason'),(5673,159,'_reasons_0_text','field_5ffca05ea140c'),(5674,159,'reasons_0_number','1'),(5675,159,'_reasons_0_number','field_5ffca0a9a140d'),(5676,159,'reasons_0_title','Get ready to turn your home into your new gym'),(5677,159,'_reasons_0_title','field_5ffca1c17dcbd'),(5678,159,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(5679,159,'_reasons_0_content','field_5ffca1d37dcbe'),(5680,159,'reasons_0_static','54'),(5681,159,'_reasons_0_static','field_5ffca9f36c9c1'),(5682,159,'reasons_0_animate','0'),(5683,159,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(5684,159,'reasons_0_background_color','lightgray2'),(5685,159,'_reasons_0_background_color','field_5ffca2087dcc0'),(5686,159,'reasons_0_background_image','56'),(5687,159,'_reasons_0_background_image','field_5ffca965f8d44'),(5688,159,'reasons_1_text','Reason'),(5689,159,'_reasons_1_text','field_5ffca05ea140c'),(5690,159,'reasons_1_number','2'),(5691,159,'_reasons_1_number','field_5ffca0a9a140d'),(5692,159,'reasons_1_title','Toronto’s best gym'),(5693,159,'_reasons_1_title','field_5ffca1c17dcbd'),(5694,159,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(5695,159,'_reasons_1_content','field_5ffca1d37dcbe'),(5696,159,'reasons_1_static','58'),(5697,159,'_reasons_1_static','field_5ffca9f36c9c1'),(5698,159,'reasons_1_animate','0'),(5699,159,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(5700,159,'reasons_1_background_color','darkgray'),(5701,159,'_reasons_1_background_color','field_5ffca2087dcc0'),(5702,159,'reasons_1_background_image',''),(5703,159,'_reasons_1_background_image','field_5ffca965f8d44'),(5704,159,'reasons_2_text','Reason'),(5705,159,'_reasons_2_text','field_5ffca05ea140c'),(5706,159,'reasons_2_number','3'),(5707,159,'_reasons_2_number','field_5ffca0a9a140d'),(5708,159,'reasons_2_title','Virtual classes with live coaches'),(5709,159,'_reasons_2_title','field_5ffca1c17dcbd'),(5710,159,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(5711,159,'_reasons_2_content','field_5ffca1d37dcbe'),(5712,159,'reasons_2_static','61'),(5713,159,'_reasons_2_static','field_5ffca9f36c9c1'),(5714,159,'reasons_2_animate','1'),(5715,159,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(5716,159,'reasons_2_background_color','white'),(5717,159,'_reasons_2_background_color','field_5ffca2087dcc0'),(5718,159,'reasons_2_background_image',''),(5719,159,'_reasons_2_background_image','field_5ffca965f8d44'),(5720,159,'reasons_3_text','Reason'),(5721,159,'_reasons_3_text','field_5ffca05ea140c'),(5722,159,'reasons_3_number','4'),(5723,159,'_reasons_3_number','field_5ffca0a9a140d'),(5724,159,'reasons_3_title','One community'),(5725,159,'_reasons_3_title','field_5ffca1c17dcbd'),(5726,159,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(5727,159,'_reasons_3_content','field_5ffca1d37dcbe'),(5728,159,'reasons_3_static','64'),(5729,159,'_reasons_3_static','field_5ffca9f36c9c1'),(5730,159,'reasons_3_animate','0'),(5731,159,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(5732,159,'reasons_3_background_color','darkgray'),(5733,159,'_reasons_3_background_color','field_5ffca2087dcc0'),(5734,159,'reasons_3_background_image','65'),(5735,159,'_reasons_3_background_image','field_5ffca965f8d44'),(5736,159,'reasons_4_text','Reason'),(5737,159,'_reasons_4_text','field_5ffca05ea140c'),(5738,159,'reasons_4_number','5'),(5739,159,'_reasons_4_number','field_5ffca0a9a140d'),(5740,159,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(5741,159,'_reasons_4_title','field_5ffca1c17dcbd'),(5742,159,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(5743,159,'_reasons_4_content','field_5ffca1d37dcbe'),(5744,159,'reasons_4_static',''),(5745,159,'_reasons_4_static','field_5ffca9f36c9c1'),(5746,159,'reasons_4_animate','0'),(5747,159,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(5748,159,'reasons_4_background_color','video'),(5749,159,'_reasons_4_background_color','field_5ffca2087dcc0'),(5750,159,'reasons_4_background_image',''),(5751,159,'_reasons_4_background_image','field_5ffca965f8d44'),(5752,159,'reasons_5_text','Reason'),(5753,159,'_reasons_5_text','field_5ffca05ea140c'),(5754,159,'reasons_5_number','6'),(5755,159,'_reasons_5_number','field_5ffca0a9a140d'),(5756,159,'reasons_5_title','More members means you pay less'),(5757,159,'_reasons_5_title','field_5ffca1c17dcbd'),(5758,159,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(5759,159,'_reasons_5_content','field_5ffca1d37dcbe'),(5760,159,'reasons_5_static',''),(5761,159,'_reasons_5_static','field_5ffca9f36c9c1'),(5762,159,'reasons_5_animate','0'),(5763,159,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(5764,159,'reasons_5_background_color','video'),(5765,159,'_reasons_5_background_color','field_5ffca2087dcc0'),(5766,159,'reasons_5_background_image',''),(5767,159,'_reasons_5_background_image','field_5ffca965f8d44'),(5768,159,'reasons_6_text','Reason'),(5769,159,'_reasons_6_text','field_5ffca05ea140c'),(5770,159,'reasons_6_number','7'),(5771,159,'_reasons_6_number','field_5ffca0a9a140d'),(5772,159,'reasons_6_title','Break your routine'),(5773,159,'_reasons_6_title','field_5ffca1c17dcbd'),(5774,159,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(5775,159,'_reasons_6_content','field_5ffca1d37dcbe'),(5776,159,'reasons_6_static','86'),(5777,159,'_reasons_6_static','field_5ffca9f36c9c1'),(5778,159,'reasons_6_animate','0'),(5779,159,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(5780,159,'reasons_6_background_color','darkgray'),(5781,159,'_reasons_6_background_color','field_5ffca2087dcc0'),(5782,159,'reasons_6_background_image',''),(5783,159,'_reasons_6_background_image','field_5ffca965f8d44'),(5784,159,'reasons_7_text','Reason'),(5785,159,'_reasons_7_text','field_5ffca05ea140c'),(5786,159,'reasons_7_number','8'),(5787,159,'_reasons_7_number','field_5ffca0a9a140d'),(5788,159,'reasons_7_title','Your pace, your training'),(5789,159,'_reasons_7_title','field_5ffca1c17dcbd'),(5790,159,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(5791,159,'_reasons_7_content','field_5ffca1d37dcbe'),(5792,159,'reasons_7_static','74'),(5793,159,'_reasons_7_static','field_5ffca9f36c9c1'),(5794,159,'reasons_7_animate','0'),(5795,159,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(5796,159,'reasons_7_background_color','white'),(5797,159,'_reasons_7_background_color','field_5ffca2087dcc0'),(5798,159,'reasons_7_background_image',''),(5799,159,'_reasons_7_background_image','field_5ffca965f8d44'),(5800,159,'reasons_8_text','Reason'),(5801,159,'_reasons_8_text','field_5ffca05ea140c'),(5802,159,'reasons_8_number','9'),(5803,159,'_reasons_8_number','field_5ffca0a9a140d'),(5804,159,'reasons_8_title','Expertly crafted workouts'),(5805,159,'_reasons_8_title','field_5ffca1c17dcbd'),(5806,159,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(5807,159,'_reasons_8_content','field_5ffca1d37dcbe'),(5808,159,'reasons_8_static','75'),(5809,159,'_reasons_8_static','field_5ffca9f36c9c1'),(5810,159,'reasons_8_animate','0'),(5811,159,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(5812,159,'reasons_8_background_color','lightgray3'),(5813,159,'_reasons_8_background_color','field_5ffca2087dcc0'),(5814,159,'reasons_8_background_image',''),(5815,159,'_reasons_8_background_image','field_5ffca965f8d44'),(5816,159,'reasons_9_text','Reason'),(5817,159,'_reasons_9_text','field_5ffca05ea140c'),(5818,159,'reasons_9_number','10'),(5819,159,'_reasons_9_number','field_5ffca0a9a140d'),(5820,159,'reasons_9_title','Convenient class times'),(5821,159,'_reasons_9_title','field_5ffca1c17dcbd'),(5822,159,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(5823,159,'_reasons_9_content','field_5ffca1d37dcbe'),(5824,159,'reasons_9_static','76'),(5825,159,'_reasons_9_static','field_5ffca9f36c9c1'),(5826,159,'reasons_9_animate','0'),(5827,159,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(5828,159,'reasons_9_background_color','darkgray'),(5829,159,'_reasons_9_background_color','field_5ffca2087dcc0'),(5830,159,'reasons_9_background_image',''),(5831,159,'_reasons_9_background_image','field_5ffca965f8d44'),(5832,159,'reasons','10'),(5833,159,'_reasons','field_5ffc9fa9a140a'),(5834,159,'reasons_1_second_image','59'),(5835,159,'_reasons_1_second_image','field_5ffcab35014a4'),(5836,159,'reasons_4_second_image','67'),(5837,159,'_reasons_4_second_image','field_5ffcab35014a4'),(5838,159,'reasons_6_second_image','72'),(5839,159,'_reasons_6_second_image','field_5ffcab35014a4'),(5840,159,'reasons_2_animated','82'),(5841,159,'_reasons_2_animated','field_5ffcaa376c9c3'),(5842,159,'reasons_4_background_image_static','69'),(5843,159,'_reasons_4_background_image_static','field_5ffca843bd901'),(5844,159,'reasons_4_background_image_animated','84'),(5845,159,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(5846,159,'reasons_5_background_image_static','70'),(5847,159,'_reasons_5_background_image_static','field_5ffca843bd901'),(5848,159,'reasons_5_background_image_animated','140'),(5849,159,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(5850,159,'video_text','Don’t take our word for it, take theirs'),(5851,159,'_video_text','field_5ffdc81396903'),(5852,159,'background_video','142'),(5853,159,'_background_video','field_5ffdc987496e6'),(5854,159,'video','143'),(5855,159,'_video','field_5ffdc82f96904'),(5858,161,'title_gold',''),(5859,161,'_title_gold','field_5ffc850fff400'),(5860,161,'title_white','One Academy Virtual'),(5861,161,'_title_white','field_5ffc8523ff401'),(5862,161,'value','25'),(5863,161,'_value','field_5ffc87023f4a1'),(5864,161,'text_banner','1-Week Unlimited Virtual Classes'),(5865,161,'_text_banner','field_5ffc87313f4a2'),(5866,161,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(5867,161,'_link_button','field_5ffc87543f4a3'),(5868,161,'text_button_banner','Start Now'),(5869,161,'_text_button_banner','field_5ffc87833f4a4'),(5870,161,'text_button_scroll_top','Book Now'),(5871,161,'_text_button_scroll_top','field_5ffc87983f4a5'),(5872,161,'background_banner','153'),(5873,161,'_background_banner','field_5ffc85ebcc1e9'),(5874,161,'static_image','160'),(5875,161,'_static_image','field_5ffc85fdcc1ea'),(5876,161,'animated','0'),(5877,161,'_animated','field_5ffc8668cc1eb'),(5878,161,'animated_image','80'),(5879,161,'_animated_image','field_5ffc8683cc1ec'),(5880,161,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(5881,161,'_title_reasons','field_5ffc9f7220389'),(5882,161,'reasons_0_text','Reason'),(5883,161,'_reasons_0_text','field_5ffca05ea140c'),(5884,161,'reasons_0_number','1'),(5885,161,'_reasons_0_number','field_5ffca0a9a140d'),(5886,161,'reasons_0_title','Get ready to turn your home into your new gym'),(5887,161,'_reasons_0_title','field_5ffca1c17dcbd'),(5888,161,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(5889,161,'_reasons_0_content','field_5ffca1d37dcbe'),(5890,161,'reasons_0_static','54'),(5891,161,'_reasons_0_static','field_5ffca9f36c9c1'),(5892,161,'reasons_0_animate','0'),(5893,161,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(5894,161,'reasons_0_background_color','lightgray2'),(5895,161,'_reasons_0_background_color','field_5ffca2087dcc0'),(5896,161,'reasons_0_background_image','56'),(5897,161,'_reasons_0_background_image','field_5ffca965f8d44'),(5898,161,'reasons_1_text','Reason'),(5899,161,'_reasons_1_text','field_5ffca05ea140c'),(5900,161,'reasons_1_number','2'),(5901,161,'_reasons_1_number','field_5ffca0a9a140d'),(5902,161,'reasons_1_title','Toronto’s best gym'),(5903,161,'_reasons_1_title','field_5ffca1c17dcbd'),(5904,161,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(5905,161,'_reasons_1_content','field_5ffca1d37dcbe'),(5906,161,'reasons_1_static','58'),(5907,161,'_reasons_1_static','field_5ffca9f36c9c1'),(5908,161,'reasons_1_animate','0'),(5909,161,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(5910,161,'reasons_1_background_color','darkgray'),(5911,161,'_reasons_1_background_color','field_5ffca2087dcc0'),(5912,161,'reasons_1_background_image',''),(5913,161,'_reasons_1_background_image','field_5ffca965f8d44'),(5914,161,'reasons_2_text','Reason'),(5915,161,'_reasons_2_text','field_5ffca05ea140c'),(5916,161,'reasons_2_number','3'),(5917,161,'_reasons_2_number','field_5ffca0a9a140d'),(5918,161,'reasons_2_title','Virtual classes with live coaches'),(5919,161,'_reasons_2_title','field_5ffca1c17dcbd'),(5920,161,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(5921,161,'_reasons_2_content','field_5ffca1d37dcbe'),(5922,161,'reasons_2_static','61'),(5923,161,'_reasons_2_static','field_5ffca9f36c9c1'),(5924,161,'reasons_2_animate','1'),(5925,161,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(5926,161,'reasons_2_background_color','white'),(5927,161,'_reasons_2_background_color','field_5ffca2087dcc0'),(5928,161,'reasons_2_background_image',''),(5929,161,'_reasons_2_background_image','field_5ffca965f8d44'),(5930,161,'reasons_3_text','Reason'),(5931,161,'_reasons_3_text','field_5ffca05ea140c'),(5932,161,'reasons_3_number','4'),(5933,161,'_reasons_3_number','field_5ffca0a9a140d'),(5934,161,'reasons_3_title','One community'),(5935,161,'_reasons_3_title','field_5ffca1c17dcbd'),(5936,161,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(5937,161,'_reasons_3_content','field_5ffca1d37dcbe'),(5938,161,'reasons_3_static','64'),(5939,161,'_reasons_3_static','field_5ffca9f36c9c1'),(5940,161,'reasons_3_animate','0'),(5941,161,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(5942,161,'reasons_3_background_color','darkgray'),(5943,161,'_reasons_3_background_color','field_5ffca2087dcc0'),(5944,161,'reasons_3_background_image','65'),(5945,161,'_reasons_3_background_image','field_5ffca965f8d44'),(5946,161,'reasons_4_text','Reason'),(5947,161,'_reasons_4_text','field_5ffca05ea140c'),(5948,161,'reasons_4_number','5'),(5949,161,'_reasons_4_number','field_5ffca0a9a140d'),(5950,161,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(5951,161,'_reasons_4_title','field_5ffca1c17dcbd'),(5952,161,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(5953,161,'_reasons_4_content','field_5ffca1d37dcbe'),(5954,161,'reasons_4_static',''),(5955,161,'_reasons_4_static','field_5ffca9f36c9c1'),(5956,161,'reasons_4_animate','0'),(5957,161,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(5958,161,'reasons_4_background_color','video'),(5959,161,'_reasons_4_background_color','field_5ffca2087dcc0'),(5960,161,'reasons_4_background_image',''),(5961,161,'_reasons_4_background_image','field_5ffca965f8d44'),(5962,161,'reasons_5_text','Reason'),(5963,161,'_reasons_5_text','field_5ffca05ea140c'),(5964,161,'reasons_5_number','6'),(5965,161,'_reasons_5_number','field_5ffca0a9a140d'),(5966,161,'reasons_5_title','More members means you pay less'),(5967,161,'_reasons_5_title','field_5ffca1c17dcbd'),(5968,161,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(5969,161,'_reasons_5_content','field_5ffca1d37dcbe'),(5970,161,'reasons_5_static',''),(5971,161,'_reasons_5_static','field_5ffca9f36c9c1'),(5972,161,'reasons_5_animate','0'),(5973,161,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(5974,161,'reasons_5_background_color','video'),(5975,161,'_reasons_5_background_color','field_5ffca2087dcc0'),(5976,161,'reasons_5_background_image',''),(5977,161,'_reasons_5_background_image','field_5ffca965f8d44'),(5978,161,'reasons_6_text','Reason'),(5979,161,'_reasons_6_text','field_5ffca05ea140c'),(5980,161,'reasons_6_number','7'),(5981,161,'_reasons_6_number','field_5ffca0a9a140d'),(5982,161,'reasons_6_title','Break your routine'),(5983,161,'_reasons_6_title','field_5ffca1c17dcbd'),(5984,161,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(5985,161,'_reasons_6_content','field_5ffca1d37dcbe'),(5986,161,'reasons_6_static','86'),(5987,161,'_reasons_6_static','field_5ffca9f36c9c1'),(5988,161,'reasons_6_animate','0'),(5989,161,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(5990,161,'reasons_6_background_color','darkgray'),(5991,161,'_reasons_6_background_color','field_5ffca2087dcc0'),(5992,161,'reasons_6_background_image',''),(5993,161,'_reasons_6_background_image','field_5ffca965f8d44'),(5994,161,'reasons_7_text','Reason'),(5995,161,'_reasons_7_text','field_5ffca05ea140c'),(5996,161,'reasons_7_number','8'),(5997,161,'_reasons_7_number','field_5ffca0a9a140d'),(5998,161,'reasons_7_title','Your pace, your training'),(5999,161,'_reasons_7_title','field_5ffca1c17dcbd'),(6000,161,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(6001,161,'_reasons_7_content','field_5ffca1d37dcbe'),(6002,161,'reasons_7_static','74'),(6003,161,'_reasons_7_static','field_5ffca9f36c9c1'),(6004,161,'reasons_7_animate','0'),(6005,161,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(6006,161,'reasons_7_background_color','white'),(6007,161,'_reasons_7_background_color','field_5ffca2087dcc0'),(6008,161,'reasons_7_background_image',''),(6009,161,'_reasons_7_background_image','field_5ffca965f8d44'),(6010,161,'reasons_8_text','Reason'),(6011,161,'_reasons_8_text','field_5ffca05ea140c'),(6012,161,'reasons_8_number','9'),(6013,161,'_reasons_8_number','field_5ffca0a9a140d'),(6014,161,'reasons_8_title','Expertly crafted workouts'),(6015,161,'_reasons_8_title','field_5ffca1c17dcbd'),(6016,161,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(6017,161,'_reasons_8_content','field_5ffca1d37dcbe'),(6018,161,'reasons_8_static','75'),(6019,161,'_reasons_8_static','field_5ffca9f36c9c1'),(6020,161,'reasons_8_animate','0'),(6021,161,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(6022,161,'reasons_8_background_color','lightgray3'),(6023,161,'_reasons_8_background_color','field_5ffca2087dcc0'),(6024,161,'reasons_8_background_image',''),(6025,161,'_reasons_8_background_image','field_5ffca965f8d44'),(6026,161,'reasons_9_text','Reason'),(6027,161,'_reasons_9_text','field_5ffca05ea140c'),(6028,161,'reasons_9_number','10'),(6029,161,'_reasons_9_number','field_5ffca0a9a140d'),(6030,161,'reasons_9_title','Convenient class times'),(6031,161,'_reasons_9_title','field_5ffca1c17dcbd'),(6032,161,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(6033,161,'_reasons_9_content','field_5ffca1d37dcbe'),(6034,161,'reasons_9_static','76'),(6035,161,'_reasons_9_static','field_5ffca9f36c9c1'),(6036,161,'reasons_9_animate','0'),(6037,161,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(6038,161,'reasons_9_background_color','darkgray'),(6039,161,'_reasons_9_background_color','field_5ffca2087dcc0'),(6040,161,'reasons_9_background_image',''),(6041,161,'_reasons_9_background_image','field_5ffca965f8d44'),(6042,161,'reasons','10'),(6043,161,'_reasons','field_5ffc9fa9a140a'),(6044,161,'reasons_1_second_image','59'),(6045,161,'_reasons_1_second_image','field_5ffcab35014a4'),(6046,161,'reasons_4_second_image','67'),(6047,161,'_reasons_4_second_image','field_5ffcab35014a4'),(6048,161,'reasons_6_second_image','72'),(6049,161,'_reasons_6_second_image','field_5ffcab35014a4'),(6050,161,'reasons_2_animated','82'),(6051,161,'_reasons_2_animated','field_5ffcaa376c9c3'),(6052,161,'reasons_4_background_image_static','69'),(6053,161,'_reasons_4_background_image_static','field_5ffca843bd901'),(6054,161,'reasons_4_background_image_animated','84'),(6055,161,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(6056,161,'reasons_5_background_image_static','70'),(6057,161,'_reasons_5_background_image_static','field_5ffca843bd901'),(6058,161,'reasons_5_background_image_animated','140'),(6059,161,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(6060,161,'video_text','Don’t take our word for it, take theirs'),(6061,161,'_video_text','field_5ffdc81396903'),(6062,161,'background_video','142'),(6063,161,'_background_video','field_5ffdc987496e6'),(6064,161,'video','143'),(6065,161,'_video','field_5ffdc82f96904'),(6068,163,'title_gold',''),(6069,163,'_title_gold','field_5ffc850fff400'),(6070,163,'title_white','One Academy Virtual'),(6071,163,'_title_white','field_5ffc8523ff401'),(6072,163,'value','25'),(6073,163,'_value','field_5ffc87023f4a1'),(6074,163,'text_banner','1-Week Unlimited Virtual Classes'),(6075,163,'_text_banner','field_5ffc87313f4a2'),(6076,163,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(6077,163,'_link_button','field_5ffc87543f4a3'),(6078,163,'text_button_banner','Start Now'),(6079,163,'_text_button_banner','field_5ffc87833f4a4'),(6080,163,'text_button_scroll_top','Book Now'),(6081,163,'_text_button_scroll_top','field_5ffc87983f4a5'),(6082,163,'background_banner','153'),(6083,163,'_background_banner','field_5ffc85ebcc1e9'),(6084,163,'static_image','162'),(6085,163,'_static_image','field_5ffc85fdcc1ea'),(6086,163,'animated','0'),(6087,163,'_animated','field_5ffc8668cc1eb'),(6088,163,'animated_image','80'),(6089,163,'_animated_image','field_5ffc8683cc1ec'),(6090,163,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(6091,163,'_title_reasons','field_5ffc9f7220389'),(6092,163,'reasons_0_text','Reason'),(6093,163,'_reasons_0_text','field_5ffca05ea140c'),(6094,163,'reasons_0_number','1'),(6095,163,'_reasons_0_number','field_5ffca0a9a140d'),(6096,163,'reasons_0_title','Get ready to turn your home into your new gym'),(6097,163,'_reasons_0_title','field_5ffca1c17dcbd'),(6098,163,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(6099,163,'_reasons_0_content','field_5ffca1d37dcbe'),(6100,163,'reasons_0_static','54'),(6101,163,'_reasons_0_static','field_5ffca9f36c9c1'),(6102,163,'reasons_0_animate','0'),(6103,163,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(6104,163,'reasons_0_background_color','lightgray2'),(6105,163,'_reasons_0_background_color','field_5ffca2087dcc0'),(6106,163,'reasons_0_background_image','56'),(6107,163,'_reasons_0_background_image','field_5ffca965f8d44'),(6108,163,'reasons_1_text','Reason'),(6109,163,'_reasons_1_text','field_5ffca05ea140c'),(6110,163,'reasons_1_number','2'),(6111,163,'_reasons_1_number','field_5ffca0a9a140d'),(6112,163,'reasons_1_title','Toronto’s best gym'),(6113,163,'_reasons_1_title','field_5ffca1c17dcbd'),(6114,163,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(6115,163,'_reasons_1_content','field_5ffca1d37dcbe'),(6116,163,'reasons_1_static','58'),(6117,163,'_reasons_1_static','field_5ffca9f36c9c1'),(6118,163,'reasons_1_animate','0'),(6119,163,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(6120,163,'reasons_1_background_color','darkgray'),(6121,163,'_reasons_1_background_color','field_5ffca2087dcc0'),(6122,163,'reasons_1_background_image',''),(6123,163,'_reasons_1_background_image','field_5ffca965f8d44'),(6124,163,'reasons_2_text','Reason'),(6125,163,'_reasons_2_text','field_5ffca05ea140c'),(6126,163,'reasons_2_number','3'),(6127,163,'_reasons_2_number','field_5ffca0a9a140d'),(6128,163,'reasons_2_title','Virtual classes with live coaches'),(6129,163,'_reasons_2_title','field_5ffca1c17dcbd'),(6130,163,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(6131,163,'_reasons_2_content','field_5ffca1d37dcbe'),(6132,163,'reasons_2_static','61'),(6133,163,'_reasons_2_static','field_5ffca9f36c9c1'),(6134,163,'reasons_2_animate','1'),(6135,163,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(6136,163,'reasons_2_background_color','white'),(6137,163,'_reasons_2_background_color','field_5ffca2087dcc0'),(6138,163,'reasons_2_background_image',''),(6139,163,'_reasons_2_background_image','field_5ffca965f8d44'),(6140,163,'reasons_3_text','Reason'),(6141,163,'_reasons_3_text','field_5ffca05ea140c'),(6142,163,'reasons_3_number','4'),(6143,163,'_reasons_3_number','field_5ffca0a9a140d'),(6144,163,'reasons_3_title','One community'),(6145,163,'_reasons_3_title','field_5ffca1c17dcbd'),(6146,163,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(6147,163,'_reasons_3_content','field_5ffca1d37dcbe'),(6148,163,'reasons_3_static','64'),(6149,163,'_reasons_3_static','field_5ffca9f36c9c1'),(6150,163,'reasons_3_animate','0'),(6151,163,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(6152,163,'reasons_3_background_color','darkgray'),(6153,163,'_reasons_3_background_color','field_5ffca2087dcc0'),(6154,163,'reasons_3_background_image','65'),(6155,163,'_reasons_3_background_image','field_5ffca965f8d44'),(6156,163,'reasons_4_text','Reason'),(6157,163,'_reasons_4_text','field_5ffca05ea140c'),(6158,163,'reasons_4_number','5'),(6159,163,'_reasons_4_number','field_5ffca0a9a140d'),(6160,163,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(6161,163,'_reasons_4_title','field_5ffca1c17dcbd'),(6162,163,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(6163,163,'_reasons_4_content','field_5ffca1d37dcbe'),(6164,163,'reasons_4_static',''),(6165,163,'_reasons_4_static','field_5ffca9f36c9c1'),(6166,163,'reasons_4_animate','0'),(6167,163,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(6168,163,'reasons_4_background_color','video'),(6169,163,'_reasons_4_background_color','field_5ffca2087dcc0'),(6170,163,'reasons_4_background_image',''),(6171,163,'_reasons_4_background_image','field_5ffca965f8d44'),(6172,163,'reasons_5_text','Reason'),(6173,163,'_reasons_5_text','field_5ffca05ea140c'),(6174,163,'reasons_5_number','6'),(6175,163,'_reasons_5_number','field_5ffca0a9a140d'),(6176,163,'reasons_5_title','More members means you pay less'),(6177,163,'_reasons_5_title','field_5ffca1c17dcbd'),(6178,163,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(6179,163,'_reasons_5_content','field_5ffca1d37dcbe'),(6180,163,'reasons_5_static',''),(6181,163,'_reasons_5_static','field_5ffca9f36c9c1'),(6182,163,'reasons_5_animate','0'),(6183,163,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(6184,163,'reasons_5_background_color','video'),(6185,163,'_reasons_5_background_color','field_5ffca2087dcc0'),(6186,163,'reasons_5_background_image',''),(6187,163,'_reasons_5_background_image','field_5ffca965f8d44'),(6188,163,'reasons_6_text','Reason'),(6189,163,'_reasons_6_text','field_5ffca05ea140c'),(6190,163,'reasons_6_number','7'),(6191,163,'_reasons_6_number','field_5ffca0a9a140d'),(6192,163,'reasons_6_title','Break your routine'),(6193,163,'_reasons_6_title','field_5ffca1c17dcbd'),(6194,163,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(6195,163,'_reasons_6_content','field_5ffca1d37dcbe'),(6196,163,'reasons_6_static','86'),(6197,163,'_reasons_6_static','field_5ffca9f36c9c1'),(6198,163,'reasons_6_animate','0'),(6199,163,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(6200,163,'reasons_6_background_color','darkgray'),(6201,163,'_reasons_6_background_color','field_5ffca2087dcc0'),(6202,163,'reasons_6_background_image',''),(6203,163,'_reasons_6_background_image','field_5ffca965f8d44'),(6204,163,'reasons_7_text','Reason'),(6205,163,'_reasons_7_text','field_5ffca05ea140c'),(6206,163,'reasons_7_number','8'),(6207,163,'_reasons_7_number','field_5ffca0a9a140d'),(6208,163,'reasons_7_title','Your pace, your training'),(6209,163,'_reasons_7_title','field_5ffca1c17dcbd'),(6210,163,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(6211,163,'_reasons_7_content','field_5ffca1d37dcbe'),(6212,163,'reasons_7_static','74'),(6213,163,'_reasons_7_static','field_5ffca9f36c9c1'),(6214,163,'reasons_7_animate','0'),(6215,163,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(6216,163,'reasons_7_background_color','white'),(6217,163,'_reasons_7_background_color','field_5ffca2087dcc0'),(6218,163,'reasons_7_background_image',''),(6219,163,'_reasons_7_background_image','field_5ffca965f8d44'),(6220,163,'reasons_8_text','Reason'),(6221,163,'_reasons_8_text','field_5ffca05ea140c'),(6222,163,'reasons_8_number','9'),(6223,163,'_reasons_8_number','field_5ffca0a9a140d'),(6224,163,'reasons_8_title','Expertly crafted workouts'),(6225,163,'_reasons_8_title','field_5ffca1c17dcbd'),(6226,163,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(6227,163,'_reasons_8_content','field_5ffca1d37dcbe'),(6228,163,'reasons_8_static','75'),(6229,163,'_reasons_8_static','field_5ffca9f36c9c1'),(6230,163,'reasons_8_animate','0'),(6231,163,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(6232,163,'reasons_8_background_color','lightgray3'),(6233,163,'_reasons_8_background_color','field_5ffca2087dcc0'),(6234,163,'reasons_8_background_image',''),(6235,163,'_reasons_8_background_image','field_5ffca965f8d44'),(6236,163,'reasons_9_text','Reason'),(6237,163,'_reasons_9_text','field_5ffca05ea140c'),(6238,163,'reasons_9_number','10'),(6239,163,'_reasons_9_number','field_5ffca0a9a140d'),(6240,163,'reasons_9_title','Convenient class times'),(6241,163,'_reasons_9_title','field_5ffca1c17dcbd'),(6242,163,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(6243,163,'_reasons_9_content','field_5ffca1d37dcbe'),(6244,163,'reasons_9_static','76'),(6245,163,'_reasons_9_static','field_5ffca9f36c9c1'),(6246,163,'reasons_9_animate','0'),(6247,163,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(6248,163,'reasons_9_background_color','darkgray'),(6249,163,'_reasons_9_background_color','field_5ffca2087dcc0'),(6250,163,'reasons_9_background_image',''),(6251,163,'_reasons_9_background_image','field_5ffca965f8d44'),(6252,163,'reasons','10'),(6253,163,'_reasons','field_5ffc9fa9a140a'),(6254,163,'reasons_1_second_image','59'),(6255,163,'_reasons_1_second_image','field_5ffcab35014a4'),(6256,163,'reasons_4_second_image','67'),(6257,163,'_reasons_4_second_image','field_5ffcab35014a4'),(6258,163,'reasons_6_second_image','72'),(6259,163,'_reasons_6_second_image','field_5ffcab35014a4'),(6260,163,'reasons_2_animated','82'),(6261,163,'_reasons_2_animated','field_5ffcaa376c9c3'),(6262,163,'reasons_4_background_image_static','69'),(6263,163,'_reasons_4_background_image_static','field_5ffca843bd901'),(6264,163,'reasons_4_background_image_animated','84'),(6265,163,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(6266,163,'reasons_5_background_image_static','70'),(6267,163,'_reasons_5_background_image_static','field_5ffca843bd901'),(6268,163,'reasons_5_background_image_animated','140'),(6269,163,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(6270,163,'video_text','Don’t take our word for it, take theirs'),(6271,163,'_video_text','field_5ffdc81396903'),(6272,163,'background_video','142'),(6273,163,'_background_video','field_5ffdc987496e6'),(6274,163,'video','143'),(6275,163,'_video','field_5ffdc82f96904'),(6278,165,'title_gold',''),(6279,165,'_title_gold','field_5ffc850fff400'),(6280,165,'title_white','One Academy Virtual'),(6281,165,'_title_white','field_5ffc8523ff401'),(6282,165,'value','25'),(6283,165,'_value','field_5ffc87023f4a1'),(6284,165,'text_banner','1-Week Unlimited Virtual Classes'),(6285,165,'_text_banner','field_5ffc87313f4a2'),(6286,165,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(6287,165,'_link_button','field_5ffc87543f4a3'),(6288,165,'text_button_banner','Start Now'),(6289,165,'_text_button_banner','field_5ffc87833f4a4'),(6290,165,'text_button_scroll_top','Book Now'),(6291,165,'_text_button_scroll_top','field_5ffc87983f4a5'),(6292,165,'background_banner','153'),(6293,165,'_background_banner','field_5ffc85ebcc1e9'),(6294,165,'static_image','164'),(6295,165,'_static_image','field_5ffc85fdcc1ea'),(6296,165,'animated','0'),(6297,165,'_animated','field_5ffc8668cc1eb'),(6298,165,'animated_image','80'),(6299,165,'_animated_image','field_5ffc8683cc1ec'),(6300,165,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(6301,165,'_title_reasons','field_5ffc9f7220389'),(6302,165,'reasons_0_text','Reason'),(6303,165,'_reasons_0_text','field_5ffca05ea140c'),(6304,165,'reasons_0_number','1'),(6305,165,'_reasons_0_number','field_5ffca0a9a140d'),(6306,165,'reasons_0_title','Get ready to turn your home into your new gym'),(6307,165,'_reasons_0_title','field_5ffca1c17dcbd'),(6308,165,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(6309,165,'_reasons_0_content','field_5ffca1d37dcbe'),(6310,165,'reasons_0_static','54'),(6311,165,'_reasons_0_static','field_5ffca9f36c9c1'),(6312,165,'reasons_0_animate','0'),(6313,165,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(6314,165,'reasons_0_background_color','lightgray2'),(6315,165,'_reasons_0_background_color','field_5ffca2087dcc0'),(6316,165,'reasons_0_background_image','56'),(6317,165,'_reasons_0_background_image','field_5ffca965f8d44'),(6318,165,'reasons_1_text','Reason'),(6319,165,'_reasons_1_text','field_5ffca05ea140c'),(6320,165,'reasons_1_number','2'),(6321,165,'_reasons_1_number','field_5ffca0a9a140d'),(6322,165,'reasons_1_title','Toronto’s best gym'),(6323,165,'_reasons_1_title','field_5ffca1c17dcbd'),(6324,165,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(6325,165,'_reasons_1_content','field_5ffca1d37dcbe'),(6326,165,'reasons_1_static','58'),(6327,165,'_reasons_1_static','field_5ffca9f36c9c1'),(6328,165,'reasons_1_animate','0'),(6329,165,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(6330,165,'reasons_1_background_color','darkgray'),(6331,165,'_reasons_1_background_color','field_5ffca2087dcc0'),(6332,165,'reasons_1_background_image',''),(6333,165,'_reasons_1_background_image','field_5ffca965f8d44'),(6334,165,'reasons_2_text','Reason'),(6335,165,'_reasons_2_text','field_5ffca05ea140c'),(6336,165,'reasons_2_number','3'),(6337,165,'_reasons_2_number','field_5ffca0a9a140d'),(6338,165,'reasons_2_title','Virtual classes with live coaches'),(6339,165,'_reasons_2_title','field_5ffca1c17dcbd'),(6340,165,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(6341,165,'_reasons_2_content','field_5ffca1d37dcbe'),(6342,165,'reasons_2_static','61'),(6343,165,'_reasons_2_static','field_5ffca9f36c9c1'),(6344,165,'reasons_2_animate','1'),(6345,165,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(6346,165,'reasons_2_background_color','white'),(6347,165,'_reasons_2_background_color','field_5ffca2087dcc0'),(6348,165,'reasons_2_background_image',''),(6349,165,'_reasons_2_background_image','field_5ffca965f8d44'),(6350,165,'reasons_3_text','Reason'),(6351,165,'_reasons_3_text','field_5ffca05ea140c'),(6352,165,'reasons_3_number','4'),(6353,165,'_reasons_3_number','field_5ffca0a9a140d'),(6354,165,'reasons_3_title','One community'),(6355,165,'_reasons_3_title','field_5ffca1c17dcbd'),(6356,165,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(6357,165,'_reasons_3_content','field_5ffca1d37dcbe'),(6358,165,'reasons_3_static','64'),(6359,165,'_reasons_3_static','field_5ffca9f36c9c1'),(6360,165,'reasons_3_animate','0'),(6361,165,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(6362,165,'reasons_3_background_color','darkgray'),(6363,165,'_reasons_3_background_color','field_5ffca2087dcc0'),(6364,165,'reasons_3_background_image','65'),(6365,165,'_reasons_3_background_image','field_5ffca965f8d44'),(6366,165,'reasons_4_text','Reason'),(6367,165,'_reasons_4_text','field_5ffca05ea140c'),(6368,165,'reasons_4_number','5'),(6369,165,'_reasons_4_number','field_5ffca0a9a140d'),(6370,165,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(6371,165,'_reasons_4_title','field_5ffca1c17dcbd'),(6372,165,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(6373,165,'_reasons_4_content','field_5ffca1d37dcbe'),(6374,165,'reasons_4_static',''),(6375,165,'_reasons_4_static','field_5ffca9f36c9c1'),(6376,165,'reasons_4_animate','0'),(6377,165,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(6378,165,'reasons_4_background_color','video'),(6379,165,'_reasons_4_background_color','field_5ffca2087dcc0'),(6380,165,'reasons_4_background_image',''),(6381,165,'_reasons_4_background_image','field_5ffca965f8d44'),(6382,165,'reasons_5_text','Reason'),(6383,165,'_reasons_5_text','field_5ffca05ea140c'),(6384,165,'reasons_5_number','6'),(6385,165,'_reasons_5_number','field_5ffca0a9a140d'),(6386,165,'reasons_5_title','More members means you pay less'),(6387,165,'_reasons_5_title','field_5ffca1c17dcbd'),(6388,165,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(6389,165,'_reasons_5_content','field_5ffca1d37dcbe'),(6390,165,'reasons_5_static',''),(6391,165,'_reasons_5_static','field_5ffca9f36c9c1'),(6392,165,'reasons_5_animate','0'),(6393,165,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(6394,165,'reasons_5_background_color','video'),(6395,165,'_reasons_5_background_color','field_5ffca2087dcc0'),(6396,165,'reasons_5_background_image',''),(6397,165,'_reasons_5_background_image','field_5ffca965f8d44'),(6398,165,'reasons_6_text','Reason'),(6399,165,'_reasons_6_text','field_5ffca05ea140c'),(6400,165,'reasons_6_number','7'),(6401,165,'_reasons_6_number','field_5ffca0a9a140d'),(6402,165,'reasons_6_title','Break your routine'),(6403,165,'_reasons_6_title','field_5ffca1c17dcbd'),(6404,165,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(6405,165,'_reasons_6_content','field_5ffca1d37dcbe'),(6406,165,'reasons_6_static','86'),(6407,165,'_reasons_6_static','field_5ffca9f36c9c1'),(6408,165,'reasons_6_animate','0'),(6409,165,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(6410,165,'reasons_6_background_color','darkgray'),(6411,165,'_reasons_6_background_color','field_5ffca2087dcc0'),(6412,165,'reasons_6_background_image',''),(6413,165,'_reasons_6_background_image','field_5ffca965f8d44'),(6414,165,'reasons_7_text','Reason'),(6415,165,'_reasons_7_text','field_5ffca05ea140c'),(6416,165,'reasons_7_number','8'),(6417,165,'_reasons_7_number','field_5ffca0a9a140d'),(6418,165,'reasons_7_title','Your pace, your training'),(6419,165,'_reasons_7_title','field_5ffca1c17dcbd'),(6420,165,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(6421,165,'_reasons_7_content','field_5ffca1d37dcbe'),(6422,165,'reasons_7_static','74'),(6423,165,'_reasons_7_static','field_5ffca9f36c9c1'),(6424,165,'reasons_7_animate','0'),(6425,165,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(6426,165,'reasons_7_background_color','white'),(6427,165,'_reasons_7_background_color','field_5ffca2087dcc0'),(6428,165,'reasons_7_background_image',''),(6429,165,'_reasons_7_background_image','field_5ffca965f8d44'),(6430,165,'reasons_8_text','Reason'),(6431,165,'_reasons_8_text','field_5ffca05ea140c'),(6432,165,'reasons_8_number','9'),(6433,165,'_reasons_8_number','field_5ffca0a9a140d'),(6434,165,'reasons_8_title','Expertly crafted workouts'),(6435,165,'_reasons_8_title','field_5ffca1c17dcbd'),(6436,165,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(6437,165,'_reasons_8_content','field_5ffca1d37dcbe'),(6438,165,'reasons_8_static','75'),(6439,165,'_reasons_8_static','field_5ffca9f36c9c1'),(6440,165,'reasons_8_animate','0'),(6441,165,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(6442,165,'reasons_8_background_color','lightgray3'),(6443,165,'_reasons_8_background_color','field_5ffca2087dcc0'),(6444,165,'reasons_8_background_image',''),(6445,165,'_reasons_8_background_image','field_5ffca965f8d44'),(6446,165,'reasons_9_text','Reason'),(6447,165,'_reasons_9_text','field_5ffca05ea140c'),(6448,165,'reasons_9_number','10'),(6449,165,'_reasons_9_number','field_5ffca0a9a140d'),(6450,165,'reasons_9_title','Convenient class times'),(6451,165,'_reasons_9_title','field_5ffca1c17dcbd'),(6452,165,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(6453,165,'_reasons_9_content','field_5ffca1d37dcbe'),(6454,165,'reasons_9_static','76'),(6455,165,'_reasons_9_static','field_5ffca9f36c9c1'),(6456,165,'reasons_9_animate','0'),(6457,165,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(6458,165,'reasons_9_background_color','darkgray'),(6459,165,'_reasons_9_background_color','field_5ffca2087dcc0'),(6460,165,'reasons_9_background_image',''),(6461,165,'_reasons_9_background_image','field_5ffca965f8d44'),(6462,165,'reasons','10'),(6463,165,'_reasons','field_5ffc9fa9a140a'),(6464,165,'reasons_1_second_image','59'),(6465,165,'_reasons_1_second_image','field_5ffcab35014a4'),(6466,165,'reasons_4_second_image','67'),(6467,165,'_reasons_4_second_image','field_5ffcab35014a4'),(6468,165,'reasons_6_second_image','72'),(6469,165,'_reasons_6_second_image','field_5ffcab35014a4'),(6470,165,'reasons_2_animated','82'),(6471,165,'_reasons_2_animated','field_5ffcaa376c9c3'),(6472,165,'reasons_4_background_image_static','69'),(6473,165,'_reasons_4_background_image_static','field_5ffca843bd901'),(6474,165,'reasons_4_background_image_animated','84'),(6475,165,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(6476,165,'reasons_5_background_image_static','70'),(6477,165,'_reasons_5_background_image_static','field_5ffca843bd901'),(6478,165,'reasons_5_background_image_animated','140'),(6479,165,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(6480,165,'video_text','Don’t take our word for it, take theirs'),(6481,165,'_video_text','field_5ffdc81396903'),(6482,165,'background_video','142'),(6483,165,'_background_video','field_5ffdc987496e6'),(6484,165,'video','143'),(6485,165,'_video','field_5ffdc82f96904'),(6488,167,'title_gold',''),(6489,167,'_title_gold','field_5ffc850fff400'),(6490,167,'title_white','One Academy Virtual'),(6491,167,'_title_white','field_5ffc8523ff401'),(6492,167,'value','25'),(6493,167,'_value','field_5ffc87023f4a1'),(6494,167,'text_banner','1-Week Unlimited Virtual Classes'),(6495,167,'_text_banner','field_5ffc87313f4a2'),(6496,167,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(6497,167,'_link_button','field_5ffc87543f4a3'),(6498,167,'text_button_banner','Start Now'),(6499,167,'_text_button_banner','field_5ffc87833f4a4'),(6500,167,'text_button_scroll_top','Book Now'),(6501,167,'_text_button_scroll_top','field_5ffc87983f4a5'),(6502,167,'background_banner','153'),(6503,167,'_background_banner','field_5ffc85ebcc1e9'),(6504,167,'static_image','166'),(6505,167,'_static_image','field_5ffc85fdcc1ea'),(6506,167,'animated','0'),(6507,167,'_animated','field_5ffc8668cc1eb'),(6508,167,'animated_image','80'),(6509,167,'_animated_image','field_5ffc8683cc1ec'),(6510,167,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(6511,167,'_title_reasons','field_5ffc9f7220389'),(6512,167,'reasons_0_text','Reason'),(6513,167,'_reasons_0_text','field_5ffca05ea140c'),(6514,167,'reasons_0_number','1'),(6515,167,'_reasons_0_number','field_5ffca0a9a140d'),(6516,167,'reasons_0_title','Get ready to turn your home into your new gym'),(6517,167,'_reasons_0_title','field_5ffca1c17dcbd'),(6518,167,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(6519,167,'_reasons_0_content','field_5ffca1d37dcbe'),(6520,167,'reasons_0_static','54'),(6521,167,'_reasons_0_static','field_5ffca9f36c9c1'),(6522,167,'reasons_0_animate','0'),(6523,167,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(6524,167,'reasons_0_background_color','lightgray2'),(6525,167,'_reasons_0_background_color','field_5ffca2087dcc0'),(6526,167,'reasons_0_background_image','56'),(6527,167,'_reasons_0_background_image','field_5ffca965f8d44'),(6528,167,'reasons_1_text','Reason'),(6529,167,'_reasons_1_text','field_5ffca05ea140c'),(6530,167,'reasons_1_number','2'),(6531,167,'_reasons_1_number','field_5ffca0a9a140d'),(6532,167,'reasons_1_title','Toronto’s best gym'),(6533,167,'_reasons_1_title','field_5ffca1c17dcbd'),(6534,167,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(6535,167,'_reasons_1_content','field_5ffca1d37dcbe'),(6536,167,'reasons_1_static','58'),(6537,167,'_reasons_1_static','field_5ffca9f36c9c1'),(6538,167,'reasons_1_animate','0'),(6539,167,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(6540,167,'reasons_1_background_color','darkgray'),(6541,167,'_reasons_1_background_color','field_5ffca2087dcc0'),(6542,167,'reasons_1_background_image',''),(6543,167,'_reasons_1_background_image','field_5ffca965f8d44'),(6544,167,'reasons_2_text','Reason'),(6545,167,'_reasons_2_text','field_5ffca05ea140c'),(6546,167,'reasons_2_number','3'),(6547,167,'_reasons_2_number','field_5ffca0a9a140d'),(6548,167,'reasons_2_title','Virtual classes with live coaches'),(6549,167,'_reasons_2_title','field_5ffca1c17dcbd'),(6550,167,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(6551,167,'_reasons_2_content','field_5ffca1d37dcbe'),(6552,167,'reasons_2_static','61'),(6553,167,'_reasons_2_static','field_5ffca9f36c9c1'),(6554,167,'reasons_2_animate','1'),(6555,167,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(6556,167,'reasons_2_background_color','white'),(6557,167,'_reasons_2_background_color','field_5ffca2087dcc0'),(6558,167,'reasons_2_background_image',''),(6559,167,'_reasons_2_background_image','field_5ffca965f8d44'),(6560,167,'reasons_3_text','Reason'),(6561,167,'_reasons_3_text','field_5ffca05ea140c'),(6562,167,'reasons_3_number','4'),(6563,167,'_reasons_3_number','field_5ffca0a9a140d'),(6564,167,'reasons_3_title','One community'),(6565,167,'_reasons_3_title','field_5ffca1c17dcbd'),(6566,167,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(6567,167,'_reasons_3_content','field_5ffca1d37dcbe'),(6568,167,'reasons_3_static','64'),(6569,167,'_reasons_3_static','field_5ffca9f36c9c1'),(6570,167,'reasons_3_animate','0'),(6571,167,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(6572,167,'reasons_3_background_color','darkgray'),(6573,167,'_reasons_3_background_color','field_5ffca2087dcc0'),(6574,167,'reasons_3_background_image','65'),(6575,167,'_reasons_3_background_image','field_5ffca965f8d44'),(6576,167,'reasons_4_text','Reason'),(6577,167,'_reasons_4_text','field_5ffca05ea140c'),(6578,167,'reasons_4_number','5'),(6579,167,'_reasons_4_number','field_5ffca0a9a140d'),(6580,167,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(6581,167,'_reasons_4_title','field_5ffca1c17dcbd'),(6582,167,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(6583,167,'_reasons_4_content','field_5ffca1d37dcbe'),(6584,167,'reasons_4_static',''),(6585,167,'_reasons_4_static','field_5ffca9f36c9c1'),(6586,167,'reasons_4_animate','0'),(6587,167,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(6588,167,'reasons_4_background_color','video'),(6589,167,'_reasons_4_background_color','field_5ffca2087dcc0'),(6590,167,'reasons_4_background_image',''),(6591,167,'_reasons_4_background_image','field_5ffca965f8d44'),(6592,167,'reasons_5_text','Reason'),(6593,167,'_reasons_5_text','field_5ffca05ea140c'),(6594,167,'reasons_5_number','6'),(6595,167,'_reasons_5_number','field_5ffca0a9a140d'),(6596,167,'reasons_5_title','More members means you pay less'),(6597,167,'_reasons_5_title','field_5ffca1c17dcbd'),(6598,167,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(6599,167,'_reasons_5_content','field_5ffca1d37dcbe'),(6600,167,'reasons_5_static',''),(6601,167,'_reasons_5_static','field_5ffca9f36c9c1'),(6602,167,'reasons_5_animate','0'),(6603,167,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(6604,167,'reasons_5_background_color','video'),(6605,167,'_reasons_5_background_color','field_5ffca2087dcc0'),(6606,167,'reasons_5_background_image',''),(6607,167,'_reasons_5_background_image','field_5ffca965f8d44'),(6608,167,'reasons_6_text','Reason'),(6609,167,'_reasons_6_text','field_5ffca05ea140c'),(6610,167,'reasons_6_number','7'),(6611,167,'_reasons_6_number','field_5ffca0a9a140d'),(6612,167,'reasons_6_title','Break your routine'),(6613,167,'_reasons_6_title','field_5ffca1c17dcbd'),(6614,167,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(6615,167,'_reasons_6_content','field_5ffca1d37dcbe'),(6616,167,'reasons_6_static','86'),(6617,167,'_reasons_6_static','field_5ffca9f36c9c1'),(6618,167,'reasons_6_animate','0'),(6619,167,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(6620,167,'reasons_6_background_color','darkgray'),(6621,167,'_reasons_6_background_color','field_5ffca2087dcc0'),(6622,167,'reasons_6_background_image',''),(6623,167,'_reasons_6_background_image','field_5ffca965f8d44'),(6624,167,'reasons_7_text','Reason'),(6625,167,'_reasons_7_text','field_5ffca05ea140c'),(6626,167,'reasons_7_number','8'),(6627,167,'_reasons_7_number','field_5ffca0a9a140d'),(6628,167,'reasons_7_title','Your pace, your training'),(6629,167,'_reasons_7_title','field_5ffca1c17dcbd'),(6630,167,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(6631,167,'_reasons_7_content','field_5ffca1d37dcbe'),(6632,167,'reasons_7_static','74'),(6633,167,'_reasons_7_static','field_5ffca9f36c9c1'),(6634,167,'reasons_7_animate','0'),(6635,167,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(6636,167,'reasons_7_background_color','white'),(6637,167,'_reasons_7_background_color','field_5ffca2087dcc0'),(6638,167,'reasons_7_background_image',''),(6639,167,'_reasons_7_background_image','field_5ffca965f8d44'),(6640,167,'reasons_8_text','Reason'),(6641,167,'_reasons_8_text','field_5ffca05ea140c'),(6642,167,'reasons_8_number','9'),(6643,167,'_reasons_8_number','field_5ffca0a9a140d'),(6644,167,'reasons_8_title','Expertly crafted workouts'),(6645,167,'_reasons_8_title','field_5ffca1c17dcbd'),(6646,167,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(6647,167,'_reasons_8_content','field_5ffca1d37dcbe'),(6648,167,'reasons_8_static','75'),(6649,167,'_reasons_8_static','field_5ffca9f36c9c1'),(6650,167,'reasons_8_animate','0'),(6651,167,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(6652,167,'reasons_8_background_color','lightgray3'),(6653,167,'_reasons_8_background_color','field_5ffca2087dcc0'),(6654,167,'reasons_8_background_image',''),(6655,167,'_reasons_8_background_image','field_5ffca965f8d44'),(6656,167,'reasons_9_text','Reason'),(6657,167,'_reasons_9_text','field_5ffca05ea140c'),(6658,167,'reasons_9_number','10'),(6659,167,'_reasons_9_number','field_5ffca0a9a140d'),(6660,167,'reasons_9_title','Convenient class times'),(6661,167,'_reasons_9_title','field_5ffca1c17dcbd'),(6662,167,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(6663,167,'_reasons_9_content','field_5ffca1d37dcbe'),(6664,167,'reasons_9_static','76'),(6665,167,'_reasons_9_static','field_5ffca9f36c9c1'),(6666,167,'reasons_9_animate','0'),(6667,167,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(6668,167,'reasons_9_background_color','darkgray'),(6669,167,'_reasons_9_background_color','field_5ffca2087dcc0'),(6670,167,'reasons_9_background_image',''),(6671,167,'_reasons_9_background_image','field_5ffca965f8d44'),(6672,167,'reasons','10'),(6673,167,'_reasons','field_5ffc9fa9a140a'),(6674,167,'reasons_1_second_image','59'),(6675,167,'_reasons_1_second_image','field_5ffcab35014a4'),(6676,167,'reasons_4_second_image','67'),(6677,167,'_reasons_4_second_image','field_5ffcab35014a4'),(6678,167,'reasons_6_second_image','72'),(6679,167,'_reasons_6_second_image','field_5ffcab35014a4'),(6680,167,'reasons_2_animated','82'),(6681,167,'_reasons_2_animated','field_5ffcaa376c9c3'),(6682,167,'reasons_4_background_image_static','69'),(6683,167,'_reasons_4_background_image_static','field_5ffca843bd901'),(6684,167,'reasons_4_background_image_animated','84'),(6685,167,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(6686,167,'reasons_5_background_image_static','70'),(6687,167,'_reasons_5_background_image_static','field_5ffca843bd901'),(6688,167,'reasons_5_background_image_animated','140'),(6689,167,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(6690,167,'video_text','Don’t take our word for it, take theirs'),(6691,167,'_video_text','field_5ffdc81396903'),(6692,167,'background_video','142'),(6693,167,'_background_video','field_5ffdc987496e6'),(6694,167,'video','143'),(6695,167,'_video','field_5ffdc82f96904'),(6700,170,'title_gold',''),(6701,170,'_title_gold','field_5ffc850fff400'),(6702,170,'title_white','One Academy Virtual'),(6703,170,'_title_white','field_5ffc8523ff401'),(6704,170,'value','25'),(6705,170,'_value','field_5ffc87023f4a1'),(6706,170,'text_banner','1-Week Unlimited Virtual Classes'),(6707,170,'_text_banner','field_5ffc87313f4a2'),(6708,170,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(6709,170,'_link_button','field_5ffc87543f4a3'),(6710,170,'text_button_banner','Start Now'),(6711,170,'_text_button_banner','field_5ffc87833f4a4'),(6712,170,'text_button_scroll_top','Book Now'),(6713,170,'_text_button_scroll_top','field_5ffc87983f4a5'),(6714,170,'background_banner','168'),(6715,170,'_background_banner','field_5ffc85ebcc1e9'),(6716,170,'static_image','169'),(6717,170,'_static_image','field_5ffc85fdcc1ea'),(6718,170,'animated','0'),(6719,170,'_animated','field_5ffc8668cc1eb'),(6720,170,'animated_image','80'),(6721,170,'_animated_image','field_5ffc8683cc1ec'),(6722,170,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(6723,170,'_title_reasons','field_5ffc9f7220389'),(6724,170,'reasons_0_text','Reason'),(6725,170,'_reasons_0_text','field_5ffca05ea140c'),(6726,170,'reasons_0_number','1'),(6727,170,'_reasons_0_number','field_5ffca0a9a140d'),(6728,170,'reasons_0_title','Get ready to turn your home into your new gym'),(6729,170,'_reasons_0_title','field_5ffca1c17dcbd'),(6730,170,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(6731,170,'_reasons_0_content','field_5ffca1d37dcbe'),(6732,170,'reasons_0_static','54'),(6733,170,'_reasons_0_static','field_5ffca9f36c9c1'),(6734,170,'reasons_0_animate','0'),(6735,170,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(6736,170,'reasons_0_background_color','lightgray2'),(6737,170,'_reasons_0_background_color','field_5ffca2087dcc0'),(6738,170,'reasons_0_background_image','56'),(6739,170,'_reasons_0_background_image','field_5ffca965f8d44'),(6740,170,'reasons_1_text','Reason'),(6741,170,'_reasons_1_text','field_5ffca05ea140c'),(6742,170,'reasons_1_number','2'),(6743,170,'_reasons_1_number','field_5ffca0a9a140d'),(6744,170,'reasons_1_title','Toronto’s best gym'),(6745,170,'_reasons_1_title','field_5ffca1c17dcbd'),(6746,170,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(6747,170,'_reasons_1_content','field_5ffca1d37dcbe'),(6748,170,'reasons_1_static','58'),(6749,170,'_reasons_1_static','field_5ffca9f36c9c1'),(6750,170,'reasons_1_animate','0'),(6751,170,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(6752,170,'reasons_1_background_color','darkgray'),(6753,170,'_reasons_1_background_color','field_5ffca2087dcc0'),(6754,170,'reasons_1_background_image',''),(6755,170,'_reasons_1_background_image','field_5ffca965f8d44'),(6756,170,'reasons_2_text','Reason'),(6757,170,'_reasons_2_text','field_5ffca05ea140c'),(6758,170,'reasons_2_number','3'),(6759,170,'_reasons_2_number','field_5ffca0a9a140d'),(6760,170,'reasons_2_title','Virtual classes with live coaches'),(6761,170,'_reasons_2_title','field_5ffca1c17dcbd'),(6762,170,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(6763,170,'_reasons_2_content','field_5ffca1d37dcbe'),(6764,170,'reasons_2_static','61'),(6765,170,'_reasons_2_static','field_5ffca9f36c9c1'),(6766,170,'reasons_2_animate','1'),(6767,170,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(6768,170,'reasons_2_background_color','white'),(6769,170,'_reasons_2_background_color','field_5ffca2087dcc0'),(6770,170,'reasons_2_background_image',''),(6771,170,'_reasons_2_background_image','field_5ffca965f8d44'),(6772,170,'reasons_3_text','Reason'),(6773,170,'_reasons_3_text','field_5ffca05ea140c'),(6774,170,'reasons_3_number','4'),(6775,170,'_reasons_3_number','field_5ffca0a9a140d'),(6776,170,'reasons_3_title','One community'),(6777,170,'_reasons_3_title','field_5ffca1c17dcbd'),(6778,170,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(6779,170,'_reasons_3_content','field_5ffca1d37dcbe'),(6780,170,'reasons_3_static','64'),(6781,170,'_reasons_3_static','field_5ffca9f36c9c1'),(6782,170,'reasons_3_animate','0'),(6783,170,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(6784,170,'reasons_3_background_color','darkgray'),(6785,170,'_reasons_3_background_color','field_5ffca2087dcc0'),(6786,170,'reasons_3_background_image','65'),(6787,170,'_reasons_3_background_image','field_5ffca965f8d44'),(6788,170,'reasons_4_text','Reason'),(6789,170,'_reasons_4_text','field_5ffca05ea140c'),(6790,170,'reasons_4_number','5'),(6791,170,'_reasons_4_number','field_5ffca0a9a140d'),(6792,170,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(6793,170,'_reasons_4_title','field_5ffca1c17dcbd'),(6794,170,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(6795,170,'_reasons_4_content','field_5ffca1d37dcbe'),(6796,170,'reasons_4_static',''),(6797,170,'_reasons_4_static','field_5ffca9f36c9c1'),(6798,170,'reasons_4_animate','0'),(6799,170,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(6800,170,'reasons_4_background_color','video'),(6801,170,'_reasons_4_background_color','field_5ffca2087dcc0'),(6802,170,'reasons_4_background_image',''),(6803,170,'_reasons_4_background_image','field_5ffca965f8d44'),(6804,170,'reasons_5_text','Reason'),(6805,170,'_reasons_5_text','field_5ffca05ea140c'),(6806,170,'reasons_5_number','6'),(6807,170,'_reasons_5_number','field_5ffca0a9a140d'),(6808,170,'reasons_5_title','More members means you pay less'),(6809,170,'_reasons_5_title','field_5ffca1c17dcbd'),(6810,170,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(6811,170,'_reasons_5_content','field_5ffca1d37dcbe'),(6812,170,'reasons_5_static',''),(6813,170,'_reasons_5_static','field_5ffca9f36c9c1'),(6814,170,'reasons_5_animate','0'),(6815,170,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(6816,170,'reasons_5_background_color','video'),(6817,170,'_reasons_5_background_color','field_5ffca2087dcc0'),(6818,170,'reasons_5_background_image',''),(6819,170,'_reasons_5_background_image','field_5ffca965f8d44'),(6820,170,'reasons_6_text','Reason'),(6821,170,'_reasons_6_text','field_5ffca05ea140c'),(6822,170,'reasons_6_number','7'),(6823,170,'_reasons_6_number','field_5ffca0a9a140d'),(6824,170,'reasons_6_title','Break your routine'),(6825,170,'_reasons_6_title','field_5ffca1c17dcbd'),(6826,170,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(6827,170,'_reasons_6_content','field_5ffca1d37dcbe'),(6828,170,'reasons_6_static','86'),(6829,170,'_reasons_6_static','field_5ffca9f36c9c1'),(6830,170,'reasons_6_animate','0'),(6831,170,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(6832,170,'reasons_6_background_color','darkgray'),(6833,170,'_reasons_6_background_color','field_5ffca2087dcc0'),(6834,170,'reasons_6_background_image',''),(6835,170,'_reasons_6_background_image','field_5ffca965f8d44'),(6836,170,'reasons_7_text','Reason'),(6837,170,'_reasons_7_text','field_5ffca05ea140c'),(6838,170,'reasons_7_number','8'),(6839,170,'_reasons_7_number','field_5ffca0a9a140d'),(6840,170,'reasons_7_title','Your pace, your training'),(6841,170,'_reasons_7_title','field_5ffca1c17dcbd'),(6842,170,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(6843,170,'_reasons_7_content','field_5ffca1d37dcbe'),(6844,170,'reasons_7_static','74'),(6845,170,'_reasons_7_static','field_5ffca9f36c9c1'),(6846,170,'reasons_7_animate','0'),(6847,170,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(6848,170,'reasons_7_background_color','white'),(6849,170,'_reasons_7_background_color','field_5ffca2087dcc0'),(6850,170,'reasons_7_background_image',''),(6851,170,'_reasons_7_background_image','field_5ffca965f8d44'),(6852,170,'reasons_8_text','Reason'),(6853,170,'_reasons_8_text','field_5ffca05ea140c'),(6854,170,'reasons_8_number','9'),(6855,170,'_reasons_8_number','field_5ffca0a9a140d'),(6856,170,'reasons_8_title','Expertly crafted workouts'),(6857,170,'_reasons_8_title','field_5ffca1c17dcbd'),(6858,170,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(6859,170,'_reasons_8_content','field_5ffca1d37dcbe'),(6860,170,'reasons_8_static','75'),(6861,170,'_reasons_8_static','field_5ffca9f36c9c1'),(6862,170,'reasons_8_animate','0'),(6863,170,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(6864,170,'reasons_8_background_color','lightgray3'),(6865,170,'_reasons_8_background_color','field_5ffca2087dcc0'),(6866,170,'reasons_8_background_image',''),(6867,170,'_reasons_8_background_image','field_5ffca965f8d44'),(6868,170,'reasons_9_text','Reason'),(6869,170,'_reasons_9_text','field_5ffca05ea140c'),(6870,170,'reasons_9_number','10'),(6871,170,'_reasons_9_number','field_5ffca0a9a140d'),(6872,170,'reasons_9_title','Convenient class times'),(6873,170,'_reasons_9_title','field_5ffca1c17dcbd'),(6874,170,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(6875,170,'_reasons_9_content','field_5ffca1d37dcbe'),(6876,170,'reasons_9_static','76'),(6877,170,'_reasons_9_static','field_5ffca9f36c9c1'),(6878,170,'reasons_9_animate','0'),(6879,170,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(6880,170,'reasons_9_background_color','darkgray'),(6881,170,'_reasons_9_background_color','field_5ffca2087dcc0'),(6882,170,'reasons_9_background_image',''),(6883,170,'_reasons_9_background_image','field_5ffca965f8d44'),(6884,170,'reasons','10'),(6885,170,'_reasons','field_5ffc9fa9a140a'),(6886,170,'reasons_1_second_image','59'),(6887,170,'_reasons_1_second_image','field_5ffcab35014a4'),(6888,170,'reasons_4_second_image','67'),(6889,170,'_reasons_4_second_image','field_5ffcab35014a4'),(6890,170,'reasons_6_second_image','72'),(6891,170,'_reasons_6_second_image','field_5ffcab35014a4'),(6892,170,'reasons_2_animated','82'),(6893,170,'_reasons_2_animated','field_5ffcaa376c9c3'),(6894,170,'reasons_4_background_image_static','69'),(6895,170,'_reasons_4_background_image_static','field_5ffca843bd901'),(6896,170,'reasons_4_background_image_animated','84'),(6897,170,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(6898,170,'reasons_5_background_image_static','70'),(6899,170,'_reasons_5_background_image_static','field_5ffca843bd901'),(6900,170,'reasons_5_background_image_animated','140'),(6901,170,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(6902,170,'video_text','Don’t take our word for it, take theirs'),(6903,170,'_video_text','field_5ffdc81396903'),(6904,170,'background_video','142'),(6905,170,'_background_video','field_5ffdc987496e6'),(6906,170,'video','143'),(6907,170,'_video','field_5ffdc82f96904'),(6910,172,'_wp_attached_file','2021/01/imgdd.png'),(6911,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1067;s:4:\"file\";s:17:\"2021/01/imgdd.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"imgdd-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"imgdd-1024x569.png\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"imgdd-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"imgdd-768x427.png\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"imgdd-1536x854.png\";s:5:\"width\";i:1536;s:6:\"height\";i:854;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"imgdd-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:5:{s:4:\"file\";s:19:\"imgdd-1536x1540.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1540;s:9:\"mime-type\";s:9:\"image/png\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:428;s:1:\"y\";i:0;s:2:\"x2\";i:1492;s:2:\"y2\";i:1067;s:14:\"original_width\";i:1920;s:15:\"original_height\";i:1067;}}s:13:\"banner-mobile\";a:5:{s:4:\"file\";s:18:\"imgdd-880x1480.png\";s:5:\"width\";i:880;s:6:\"height\";i:1480;s:9:\"mime-type\";s:9:\"image/png\";s:22:\"cpt_last_cropping_data\";a:6:{s:1:\"x\";i:642;s:1:\"y\";i:0;s:2:\"x2\";i:1277;s:2:\"y2\";i:1067;s:14:\"original_width\";i:1920;s:15:\"original_height\";i:1067;}}s:16:\"bg-video-desktop\";a:4:{s:4:\"file\";s:18:\"imgdd-1440x500.png\";s:5:\"width\";i:1440;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-tablet\";a:4:{s:4:\"file\";s:17:\"imgdd-768x500.png\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:17:\"imgdd-400x600.png\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6912,173,'title_gold',''),(6913,173,'_title_gold','field_5ffc850fff400'),(6914,173,'title_white','One Academy Virtual'),(6915,173,'_title_white','field_5ffc8523ff401'),(6916,173,'value','25'),(6917,173,'_value','field_5ffc87023f4a1'),(6918,173,'text_banner','1-Week Unlimited Virtual Classes'),(6919,173,'_text_banner','field_5ffc87313f4a2'),(6920,173,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(6921,173,'_link_button','field_5ffc87543f4a3'),(6922,173,'text_button_banner','Start Now'),(6923,173,'_text_button_banner','field_5ffc87833f4a4'),(6924,173,'text_button_scroll_top','Book Now'),(6925,173,'_text_button_scroll_top','field_5ffc87983f4a5'),(6926,173,'background_banner','171'),(6927,173,'_background_banner','field_5ffc85ebcc1e9'),(6928,173,'static_image','172'),(6929,173,'_static_image','field_5ffc85fdcc1ea'),(6930,173,'animated','0'),(6931,173,'_animated','field_5ffc8668cc1eb'),(6932,173,'animated_image','80'),(6933,173,'_animated_image','field_5ffc8683cc1ec'),(6934,173,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(6935,173,'_title_reasons','field_5ffc9f7220389'),(6936,173,'reasons_0_text','Reason'),(6937,173,'_reasons_0_text','field_5ffca05ea140c'),(6938,173,'reasons_0_number','1'),(6939,173,'_reasons_0_number','field_5ffca0a9a140d'),(6940,173,'reasons_0_title','Get ready to turn your home into your new gym'),(6941,173,'_reasons_0_title','field_5ffca1c17dcbd'),(6942,173,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(6943,173,'_reasons_0_content','field_5ffca1d37dcbe'),(6944,173,'reasons_0_static','54'),(6945,173,'_reasons_0_static','field_5ffca9f36c9c1'),(6946,173,'reasons_0_animate','0'),(6947,173,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(6948,173,'reasons_0_background_color','lightgray2'),(6949,173,'_reasons_0_background_color','field_5ffca2087dcc0'),(6950,173,'reasons_0_background_image','56'),(6951,173,'_reasons_0_background_image','field_5ffca965f8d44'),(6952,173,'reasons_1_text','Reason'),(6953,173,'_reasons_1_text','field_5ffca05ea140c'),(6954,173,'reasons_1_number','2'),(6955,173,'_reasons_1_number','field_5ffca0a9a140d'),(6956,173,'reasons_1_title','Toronto’s best gym'),(6957,173,'_reasons_1_title','field_5ffca1c17dcbd'),(6958,173,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(6959,173,'_reasons_1_content','field_5ffca1d37dcbe'),(6960,173,'reasons_1_static','58'),(6961,173,'_reasons_1_static','field_5ffca9f36c9c1'),(6962,173,'reasons_1_animate','0'),(6963,173,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(6964,173,'reasons_1_background_color','darkgray'),(6965,173,'_reasons_1_background_color','field_5ffca2087dcc0'),(6966,173,'reasons_1_background_image',''),(6967,173,'_reasons_1_background_image','field_5ffca965f8d44'),(6968,173,'reasons_2_text','Reason'),(6969,173,'_reasons_2_text','field_5ffca05ea140c'),(6970,173,'reasons_2_number','3'),(6971,173,'_reasons_2_number','field_5ffca0a9a140d'),(6972,173,'reasons_2_title','Virtual classes with live coaches'),(6973,173,'_reasons_2_title','field_5ffca1c17dcbd'),(6974,173,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(6975,173,'_reasons_2_content','field_5ffca1d37dcbe'),(6976,173,'reasons_2_static','61'),(6977,173,'_reasons_2_static','field_5ffca9f36c9c1'),(6978,173,'reasons_2_animate','1'),(6979,173,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(6980,173,'reasons_2_background_color','white'),(6981,173,'_reasons_2_background_color','field_5ffca2087dcc0'),(6982,173,'reasons_2_background_image',''),(6983,173,'_reasons_2_background_image','field_5ffca965f8d44'),(6984,173,'reasons_3_text','Reason'),(6985,173,'_reasons_3_text','field_5ffca05ea140c'),(6986,173,'reasons_3_number','4'),(6987,173,'_reasons_3_number','field_5ffca0a9a140d'),(6988,173,'reasons_3_title','One community'),(6989,173,'_reasons_3_title','field_5ffca1c17dcbd'),(6990,173,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(6991,173,'_reasons_3_content','field_5ffca1d37dcbe'),(6992,173,'reasons_3_static','64'),(6993,173,'_reasons_3_static','field_5ffca9f36c9c1'),(6994,173,'reasons_3_animate','0'),(6995,173,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(6996,173,'reasons_3_background_color','darkgray'),(6997,173,'_reasons_3_background_color','field_5ffca2087dcc0'),(6998,173,'reasons_3_background_image','65'),(6999,173,'_reasons_3_background_image','field_5ffca965f8d44'),(7000,173,'reasons_4_text','Reason'),(7001,173,'_reasons_4_text','field_5ffca05ea140c'),(7002,173,'reasons_4_number','5'),(7003,173,'_reasons_4_number','field_5ffca0a9a140d'),(7004,173,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(7005,173,'_reasons_4_title','field_5ffca1c17dcbd'),(7006,173,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(7007,173,'_reasons_4_content','field_5ffca1d37dcbe'),(7008,173,'reasons_4_static',''),(7009,173,'_reasons_4_static','field_5ffca9f36c9c1'),(7010,173,'reasons_4_animate','0'),(7011,173,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(7012,173,'reasons_4_background_color','video'),(7013,173,'_reasons_4_background_color','field_5ffca2087dcc0'),(7014,173,'reasons_4_background_image',''),(7015,173,'_reasons_4_background_image','field_5ffca965f8d44'),(7016,173,'reasons_5_text','Reason'),(7017,173,'_reasons_5_text','field_5ffca05ea140c'),(7018,173,'reasons_5_number','6'),(7019,173,'_reasons_5_number','field_5ffca0a9a140d'),(7020,173,'reasons_5_title','More members means you pay less'),(7021,173,'_reasons_5_title','field_5ffca1c17dcbd'),(7022,173,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(7023,173,'_reasons_5_content','field_5ffca1d37dcbe'),(7024,173,'reasons_5_static',''),(7025,173,'_reasons_5_static','field_5ffca9f36c9c1'),(7026,173,'reasons_5_animate','0'),(7027,173,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(7028,173,'reasons_5_background_color','video'),(7029,173,'_reasons_5_background_color','field_5ffca2087dcc0'),(7030,173,'reasons_5_background_image',''),(7031,173,'_reasons_5_background_image','field_5ffca965f8d44'),(7032,173,'reasons_6_text','Reason'),(7033,173,'_reasons_6_text','field_5ffca05ea140c'),(7034,173,'reasons_6_number','7'),(7035,173,'_reasons_6_number','field_5ffca0a9a140d'),(7036,173,'reasons_6_title','Break your routine'),(7037,173,'_reasons_6_title','field_5ffca1c17dcbd'),(7038,173,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(7039,173,'_reasons_6_content','field_5ffca1d37dcbe'),(7040,173,'reasons_6_static','86'),(7041,173,'_reasons_6_static','field_5ffca9f36c9c1'),(7042,173,'reasons_6_animate','0'),(7043,173,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(7044,173,'reasons_6_background_color','darkgray'),(7045,173,'_reasons_6_background_color','field_5ffca2087dcc0'),(7046,173,'reasons_6_background_image',''),(7047,173,'_reasons_6_background_image','field_5ffca965f8d44'),(7048,173,'reasons_7_text','Reason'),(7049,173,'_reasons_7_text','field_5ffca05ea140c'),(7050,173,'reasons_7_number','8'),(7051,173,'_reasons_7_number','field_5ffca0a9a140d'),(7052,173,'reasons_7_title','Your pace, your training'),(7053,173,'_reasons_7_title','field_5ffca1c17dcbd'),(7054,173,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(7055,173,'_reasons_7_content','field_5ffca1d37dcbe'),(7056,173,'reasons_7_static','74'),(7057,173,'_reasons_7_static','field_5ffca9f36c9c1'),(7058,173,'reasons_7_animate','0'),(7059,173,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(7060,173,'reasons_7_background_color','white'),(7061,173,'_reasons_7_background_color','field_5ffca2087dcc0'),(7062,173,'reasons_7_background_image',''),(7063,173,'_reasons_7_background_image','field_5ffca965f8d44'),(7064,173,'reasons_8_text','Reason'),(7065,173,'_reasons_8_text','field_5ffca05ea140c'),(7066,173,'reasons_8_number','9'),(7067,173,'_reasons_8_number','field_5ffca0a9a140d'),(7068,173,'reasons_8_title','Expertly crafted workouts'),(7069,173,'_reasons_8_title','field_5ffca1c17dcbd'),(7070,173,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(7071,173,'_reasons_8_content','field_5ffca1d37dcbe'),(7072,173,'reasons_8_static','75'),(7073,173,'_reasons_8_static','field_5ffca9f36c9c1'),(7074,173,'reasons_8_animate','0'),(7075,173,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(7076,173,'reasons_8_background_color','lightgray3'),(7077,173,'_reasons_8_background_color','field_5ffca2087dcc0'),(7078,173,'reasons_8_background_image',''),(7079,173,'_reasons_8_background_image','field_5ffca965f8d44'),(7080,173,'reasons_9_text','Reason'),(7081,173,'_reasons_9_text','field_5ffca05ea140c'),(7082,173,'reasons_9_number','10'),(7083,173,'_reasons_9_number','field_5ffca0a9a140d'),(7084,173,'reasons_9_title','Convenient class times'),(7085,173,'_reasons_9_title','field_5ffca1c17dcbd'),(7086,173,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(7087,173,'_reasons_9_content','field_5ffca1d37dcbe'),(7088,173,'reasons_9_static','76'),(7089,173,'_reasons_9_static','field_5ffca9f36c9c1'),(7090,173,'reasons_9_animate','0'),(7091,173,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(7092,173,'reasons_9_background_color','darkgray'),(7093,173,'_reasons_9_background_color','field_5ffca2087dcc0'),(7094,173,'reasons_9_background_image',''),(7095,173,'_reasons_9_background_image','field_5ffca965f8d44'),(7096,173,'reasons','10'),(7097,173,'_reasons','field_5ffc9fa9a140a'),(7098,173,'reasons_1_second_image','59'),(7099,173,'_reasons_1_second_image','field_5ffcab35014a4'),(7100,173,'reasons_4_second_image','67'),(7101,173,'_reasons_4_second_image','field_5ffcab35014a4'),(7102,173,'reasons_6_second_image','72'),(7103,173,'_reasons_6_second_image','field_5ffcab35014a4'),(7104,173,'reasons_2_animated','82'),(7105,173,'_reasons_2_animated','field_5ffcaa376c9c3'),(7106,173,'reasons_4_background_image_static','69'),(7107,173,'_reasons_4_background_image_static','field_5ffca843bd901'),(7108,173,'reasons_4_background_image_animated','84'),(7109,173,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(7110,173,'reasons_5_background_image_static','70'),(7111,173,'_reasons_5_background_image_static','field_5ffca843bd901'),(7112,173,'reasons_5_background_image_animated','140'),(7113,173,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(7114,173,'video_text','Don’t take our word for it, take theirs'),(7115,173,'_video_text','field_5ffdc81396903'),(7116,173,'background_video','142'),(7117,173,'_background_video','field_5ffdc987496e6'),(7118,173,'video','143'),(7119,173,'_video','field_5ffdc82f96904'),(7120,174,'_wp_attached_file','2021/01/bg2.jpg'),(7121,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1067;s:4:\"file\";s:15:\"2021/01/bg2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg2-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg2-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg2-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg2-1536x854.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"bg2-1060x655.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:15:\"bg2-768x554.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:15:\"bg2-880x940.jpg\";s:5:\"width\";i:880;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"bg-video-desktop\";a:4:{s:4:\"file\";s:16:\"bg2-1440x500.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"bg-video-tablet\";a:4:{s:4:\"file\";s:15:\"bg2-768x500.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:15:\"bg2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7122,175,'title_gold',''),(7123,175,'_title_gold','field_5ffc850fff400'),(7124,175,'title_white','One Academy Virtual'),(7125,175,'_title_white','field_5ffc8523ff401'),(7126,175,'value','25'),(7127,175,'_value','field_5ffc87023f4a1'),(7128,175,'text_banner','1-Week Unlimited Virtual Classes'),(7129,175,'_text_banner','field_5ffc87313f4a2'),(7130,175,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(7131,175,'_link_button','field_5ffc87543f4a3'),(7132,175,'text_button_banner','Start Now'),(7133,175,'_text_button_banner','field_5ffc87833f4a4'),(7134,175,'text_button_scroll_top','Book Now'),(7135,175,'_text_button_scroll_top','field_5ffc87983f4a5'),(7136,175,'background_banner','174'),(7137,175,'_background_banner','field_5ffc85ebcc1e9'),(7138,175,'static_image','172'),(7139,175,'_static_image','field_5ffc85fdcc1ea'),(7140,175,'animated','0'),(7141,175,'_animated','field_5ffc8668cc1eb'),(7142,175,'animated_image','80'),(7143,175,'_animated_image','field_5ffc8683cc1ec'),(7144,175,'title_reasons','Top 10 Reasons To Join One Academy Virtual Training'),(7145,175,'_title_reasons','field_5ffc9f7220389'),(7146,175,'reasons_0_text','Reason'),(7147,175,'_reasons_0_text','field_5ffca05ea140c'),(7148,175,'reasons_0_number','1'),(7149,175,'_reasons_0_number','field_5ffca0a9a140d'),(7150,175,'reasons_0_title','Get ready to turn your home into your new gym'),(7151,175,'_reasons_0_title','field_5ffca1c17dcbd'),(7152,175,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(7153,175,'_reasons_0_content','field_5ffca1d37dcbe'),(7154,175,'reasons_0_static','54'),(7155,175,'_reasons_0_static','field_5ffca9f36c9c1'),(7156,175,'reasons_0_animate','0'),(7157,175,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(7158,175,'reasons_0_background_color','lightgray2'),(7159,175,'_reasons_0_background_color','field_5ffca2087dcc0'),(7160,175,'reasons_0_background_image','56'),(7161,175,'_reasons_0_background_image','field_5ffca965f8d44'),(7162,175,'reasons_1_text','Reason'),(7163,175,'_reasons_1_text','field_5ffca05ea140c'),(7164,175,'reasons_1_number','2'),(7165,175,'_reasons_1_number','field_5ffca0a9a140d'),(7166,175,'reasons_1_title','Toronto’s best gym'),(7167,175,'_reasons_1_title','field_5ffca1c17dcbd'),(7168,175,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(7169,175,'_reasons_1_content','field_5ffca1d37dcbe'),(7170,175,'reasons_1_static','58'),(7171,175,'_reasons_1_static','field_5ffca9f36c9c1'),(7172,175,'reasons_1_animate','0'),(7173,175,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(7174,175,'reasons_1_background_color','darkgray'),(7175,175,'_reasons_1_background_color','field_5ffca2087dcc0'),(7176,175,'reasons_1_background_image',''),(7177,175,'_reasons_1_background_image','field_5ffca965f8d44'),(7178,175,'reasons_2_text','Reason'),(7179,175,'_reasons_2_text','field_5ffca05ea140c'),(7180,175,'reasons_2_number','3'),(7181,175,'_reasons_2_number','field_5ffca0a9a140d'),(7182,175,'reasons_2_title','Virtual classes with live coaches'),(7183,175,'_reasons_2_title','field_5ffca1c17dcbd'),(7184,175,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(7185,175,'_reasons_2_content','field_5ffca1d37dcbe'),(7186,175,'reasons_2_static','61'),(7187,175,'_reasons_2_static','field_5ffca9f36c9c1'),(7188,175,'reasons_2_animate','1'),(7189,175,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(7190,175,'reasons_2_background_color','white'),(7191,175,'_reasons_2_background_color','field_5ffca2087dcc0'),(7192,175,'reasons_2_background_image',''),(7193,175,'_reasons_2_background_image','field_5ffca965f8d44'),(7194,175,'reasons_3_text','Reason'),(7195,175,'_reasons_3_text','field_5ffca05ea140c'),(7196,175,'reasons_3_number','4'),(7197,175,'_reasons_3_number','field_5ffca0a9a140d'),(7198,175,'reasons_3_title','One community'),(7199,175,'_reasons_3_title','field_5ffca1c17dcbd'),(7200,175,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(7201,175,'_reasons_3_content','field_5ffca1d37dcbe'),(7202,175,'reasons_3_static','64'),(7203,175,'_reasons_3_static','field_5ffca9f36c9c1'),(7204,175,'reasons_3_animate','0'),(7205,175,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(7206,175,'reasons_3_background_color','darkgray'),(7207,175,'_reasons_3_background_color','field_5ffca2087dcc0'),(7208,175,'reasons_3_background_image','65'),(7209,175,'_reasons_3_background_image','field_5ffca965f8d44'),(7210,175,'reasons_4_text','Reason'),(7211,175,'_reasons_4_text','field_5ffca05ea140c'),(7212,175,'reasons_4_number','5'),(7213,175,'_reasons_4_number','field_5ffca0a9a140d'),(7214,175,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(7215,175,'_reasons_4_title','field_5ffca1c17dcbd'),(7216,175,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(7217,175,'_reasons_4_content','field_5ffca1d37dcbe'),(7218,175,'reasons_4_static',''),(7219,175,'_reasons_4_static','field_5ffca9f36c9c1'),(7220,175,'reasons_4_animate','0'),(7221,175,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(7222,175,'reasons_4_background_color','video'),(7223,175,'_reasons_4_background_color','field_5ffca2087dcc0'),(7224,175,'reasons_4_background_image',''),(7225,175,'_reasons_4_background_image','field_5ffca965f8d44'),(7226,175,'reasons_5_text','Reason'),(7227,175,'_reasons_5_text','field_5ffca05ea140c'),(7228,175,'reasons_5_number','6'),(7229,175,'_reasons_5_number','field_5ffca0a9a140d'),(7230,175,'reasons_5_title','More members means you pay less'),(7231,175,'_reasons_5_title','field_5ffca1c17dcbd'),(7232,175,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(7233,175,'_reasons_5_content','field_5ffca1d37dcbe'),(7234,175,'reasons_5_static',''),(7235,175,'_reasons_5_static','field_5ffca9f36c9c1'),(7236,175,'reasons_5_animate','0'),(7237,175,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(7238,175,'reasons_5_background_color','video'),(7239,175,'_reasons_5_background_color','field_5ffca2087dcc0'),(7240,175,'reasons_5_background_image',''),(7241,175,'_reasons_5_background_image','field_5ffca965f8d44'),(7242,175,'reasons_6_text','Reason'),(7243,175,'_reasons_6_text','field_5ffca05ea140c'),(7244,175,'reasons_6_number','7'),(7245,175,'_reasons_6_number','field_5ffca0a9a140d'),(7246,175,'reasons_6_title','Break your routine'),(7247,175,'_reasons_6_title','field_5ffca1c17dcbd'),(7248,175,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(7249,175,'_reasons_6_content','field_5ffca1d37dcbe'),(7250,175,'reasons_6_static','86'),(7251,175,'_reasons_6_static','field_5ffca9f36c9c1'),(7252,175,'reasons_6_animate','0'),(7253,175,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(7254,175,'reasons_6_background_color','darkgray'),(7255,175,'_reasons_6_background_color','field_5ffca2087dcc0'),(7256,175,'reasons_6_background_image',''),(7257,175,'_reasons_6_background_image','field_5ffca965f8d44'),(7258,175,'reasons_7_text','Reason'),(7259,175,'_reasons_7_text','field_5ffca05ea140c'),(7260,175,'reasons_7_number','8'),(7261,175,'_reasons_7_number','field_5ffca0a9a140d'),(7262,175,'reasons_7_title','Your pace, your training'),(7263,175,'_reasons_7_title','field_5ffca1c17dcbd'),(7264,175,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(7265,175,'_reasons_7_content','field_5ffca1d37dcbe'),(7266,175,'reasons_7_static','74'),(7267,175,'_reasons_7_static','field_5ffca9f36c9c1'),(7268,175,'reasons_7_animate','0'),(7269,175,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(7270,175,'reasons_7_background_color','white'),(7271,175,'_reasons_7_background_color','field_5ffca2087dcc0'),(7272,175,'reasons_7_background_image',''),(7273,175,'_reasons_7_background_image','field_5ffca965f8d44'),(7274,175,'reasons_8_text','Reason'),(7275,175,'_reasons_8_text','field_5ffca05ea140c'),(7276,175,'reasons_8_number','9'),(7277,175,'_reasons_8_number','field_5ffca0a9a140d'),(7278,175,'reasons_8_title','Expertly crafted workouts'),(7279,175,'_reasons_8_title','field_5ffca1c17dcbd'),(7280,175,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(7281,175,'_reasons_8_content','field_5ffca1d37dcbe'),(7282,175,'reasons_8_static','75'),(7283,175,'_reasons_8_static','field_5ffca9f36c9c1'),(7284,175,'reasons_8_animate','0'),(7285,175,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(7286,175,'reasons_8_background_color','lightgray3'),(7287,175,'_reasons_8_background_color','field_5ffca2087dcc0'),(7288,175,'reasons_8_background_image',''),(7289,175,'_reasons_8_background_image','field_5ffca965f8d44'),(7290,175,'reasons_9_text','Reason'),(7291,175,'_reasons_9_text','field_5ffca05ea140c'),(7292,175,'reasons_9_number','10'),(7293,175,'_reasons_9_number','field_5ffca0a9a140d'),(7294,175,'reasons_9_title','Convenient class times'),(7295,175,'_reasons_9_title','field_5ffca1c17dcbd'),(7296,175,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(7297,175,'_reasons_9_content','field_5ffca1d37dcbe'),(7298,175,'reasons_9_static','76'),(7299,175,'_reasons_9_static','field_5ffca9f36c9c1'),(7300,175,'reasons_9_animate','0'),(7301,175,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(7302,175,'reasons_9_background_color','darkgray'),(7303,175,'_reasons_9_background_color','field_5ffca2087dcc0'),(7304,175,'reasons_9_background_image',''),(7305,175,'_reasons_9_background_image','field_5ffca965f8d44'),(7306,175,'reasons','10'),(7307,175,'_reasons','field_5ffc9fa9a140a'),(7308,175,'reasons_1_second_image','59'),(7309,175,'_reasons_1_second_image','field_5ffcab35014a4'),(7310,175,'reasons_4_second_image','67'),(7311,175,'_reasons_4_second_image','field_5ffcab35014a4'),(7312,175,'reasons_6_second_image','72'),(7313,175,'_reasons_6_second_image','field_5ffcab35014a4'),(7314,175,'reasons_2_animated','82'),(7315,175,'_reasons_2_animated','field_5ffcaa376c9c3'),(7316,175,'reasons_4_background_image_static','69'),(7317,175,'_reasons_4_background_image_static','field_5ffca843bd901'),(7318,175,'reasons_4_background_image_animated','84'),(7319,175,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(7320,175,'reasons_5_background_image_static','70'),(7321,175,'_reasons_5_background_image_static','field_5ffca843bd901'),(7322,175,'reasons_5_background_image_animated','140'),(7323,175,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(7324,175,'video_text','Don’t take our word for it, take theirs'),(7325,175,'_video_text','field_5ffdc81396903'),(7326,175,'background_video','142'),(7327,175,'_background_video','field_5ffdc987496e6'),(7328,175,'video','143'),(7329,175,'_video','field_5ffdc82f96904'),(7330,5,'subtitle_reasons','To Start Training Now'),(7331,5,'_subtitle_reasons','field_6011d4f64bc04'),(7332,177,'title_gold',''),(7333,177,'_title_gold','field_5ffc850fff400'),(7334,177,'title_white','One Academy Virtual'),(7335,177,'_title_white','field_5ffc8523ff401'),(7336,177,'value','25'),(7337,177,'_value','field_5ffc87023f4a1'),(7338,177,'text_banner','1-Week Unlimited Virtual Classes'),(7339,177,'_text_banner','field_5ffc87313f4a2'),(7340,177,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(7341,177,'_link_button','field_5ffc87543f4a3'),(7342,177,'text_button_banner','Start Now'),(7343,177,'_text_button_banner','field_5ffc87833f4a4'),(7344,177,'text_button_scroll_top','Book Now'),(7345,177,'_text_button_scroll_top','field_5ffc87983f4a5'),(7346,177,'background_banner','174'),(7347,177,'_background_banner','field_5ffc85ebcc1e9'),(7348,177,'static_image','172'),(7349,177,'_static_image','field_5ffc85fdcc1ea'),(7350,177,'animated','0'),(7351,177,'_animated','field_5ffc8668cc1eb'),(7352,177,'animated_image','80'),(7353,177,'_animated_image','field_5ffc8683cc1ec'),(7354,177,'title_reasons','10 Reasons'),(7355,177,'_title_reasons','field_5ffc9f7220389'),(7356,177,'reasons_0_text','Reason'),(7357,177,'_reasons_0_text','field_5ffca05ea140c'),(7358,177,'reasons_0_number','1'),(7359,177,'_reasons_0_number','field_5ffca0a9a140d'),(7360,177,'reasons_0_title','Get ready to turn your home into your new gym'),(7361,177,'_reasons_0_title','field_5ffca1c17dcbd'),(7362,177,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(7363,177,'_reasons_0_content','field_5ffca1d37dcbe'),(7364,177,'reasons_0_static','54'),(7365,177,'_reasons_0_static','field_5ffca9f36c9c1'),(7366,177,'reasons_0_animate','0'),(7367,177,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(7368,177,'reasons_0_background_color','lightgray2'),(7369,177,'_reasons_0_background_color','field_5ffca2087dcc0'),(7370,177,'reasons_0_background_image','56'),(7371,177,'_reasons_0_background_image','field_5ffca965f8d44'),(7372,177,'reasons_1_text','Reason'),(7373,177,'_reasons_1_text','field_5ffca05ea140c'),(7374,177,'reasons_1_number','2'),(7375,177,'_reasons_1_number','field_5ffca0a9a140d'),(7376,177,'reasons_1_title','Toronto’s best gym'),(7377,177,'_reasons_1_title','field_5ffca1c17dcbd'),(7378,177,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(7379,177,'_reasons_1_content','field_5ffca1d37dcbe'),(7380,177,'reasons_1_static','58'),(7381,177,'_reasons_1_static','field_5ffca9f36c9c1'),(7382,177,'reasons_1_animate','0'),(7383,177,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(7384,177,'reasons_1_background_color','darkgray'),(7385,177,'_reasons_1_background_color','field_5ffca2087dcc0'),(7386,177,'reasons_1_background_image',''),(7387,177,'_reasons_1_background_image','field_5ffca965f8d44'),(7388,177,'reasons_2_text','Reason'),(7389,177,'_reasons_2_text','field_5ffca05ea140c'),(7390,177,'reasons_2_number','3'),(7391,177,'_reasons_2_number','field_5ffca0a9a140d'),(7392,177,'reasons_2_title','Virtual classes with live coaches'),(7393,177,'_reasons_2_title','field_5ffca1c17dcbd'),(7394,177,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(7395,177,'_reasons_2_content','field_5ffca1d37dcbe'),(7396,177,'reasons_2_static','61'),(7397,177,'_reasons_2_static','field_5ffca9f36c9c1'),(7398,177,'reasons_2_animate','1'),(7399,177,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(7400,177,'reasons_2_background_color','white'),(7401,177,'_reasons_2_background_color','field_5ffca2087dcc0'),(7402,177,'reasons_2_background_image',''),(7403,177,'_reasons_2_background_image','field_5ffca965f8d44'),(7404,177,'reasons_3_text','Reason'),(7405,177,'_reasons_3_text','field_5ffca05ea140c'),(7406,177,'reasons_3_number','4'),(7407,177,'_reasons_3_number','field_5ffca0a9a140d'),(7408,177,'reasons_3_title','One community'),(7409,177,'_reasons_3_title','field_5ffca1c17dcbd'),(7410,177,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(7411,177,'_reasons_3_content','field_5ffca1d37dcbe'),(7412,177,'reasons_3_static','64'),(7413,177,'_reasons_3_static','field_5ffca9f36c9c1'),(7414,177,'reasons_3_animate','0'),(7415,177,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(7416,177,'reasons_3_background_color','darkgray'),(7417,177,'_reasons_3_background_color','field_5ffca2087dcc0'),(7418,177,'reasons_3_background_image','65'),(7419,177,'_reasons_3_background_image','field_5ffca965f8d44'),(7420,177,'reasons_4_text','Reason'),(7421,177,'_reasons_4_text','field_5ffca05ea140c'),(7422,177,'reasons_4_number','5'),(7423,177,'_reasons_4_number','field_5ffca0a9a140d'),(7424,177,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(7425,177,'_reasons_4_title','field_5ffca1c17dcbd'),(7426,177,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(7427,177,'_reasons_4_content','field_5ffca1d37dcbe'),(7428,177,'reasons_4_static',''),(7429,177,'_reasons_4_static','field_5ffca9f36c9c1'),(7430,177,'reasons_4_animate','0'),(7431,177,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(7432,177,'reasons_4_background_color','video'),(7433,177,'_reasons_4_background_color','field_5ffca2087dcc0'),(7434,177,'reasons_4_background_image',''),(7435,177,'_reasons_4_background_image','field_5ffca965f8d44'),(7436,177,'reasons_5_text','Reason'),(7437,177,'_reasons_5_text','field_5ffca05ea140c'),(7438,177,'reasons_5_number','6'),(7439,177,'_reasons_5_number','field_5ffca0a9a140d'),(7440,177,'reasons_5_title','More members means you pay less'),(7441,177,'_reasons_5_title','field_5ffca1c17dcbd'),(7442,177,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(7443,177,'_reasons_5_content','field_5ffca1d37dcbe'),(7444,177,'reasons_5_static',''),(7445,177,'_reasons_5_static','field_5ffca9f36c9c1'),(7446,177,'reasons_5_animate','0'),(7447,177,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(7448,177,'reasons_5_background_color','video'),(7449,177,'_reasons_5_background_color','field_5ffca2087dcc0'),(7450,177,'reasons_5_background_image',''),(7451,177,'_reasons_5_background_image','field_5ffca965f8d44'),(7452,177,'reasons_6_text','Reason'),(7453,177,'_reasons_6_text','field_5ffca05ea140c'),(7454,177,'reasons_6_number','7'),(7455,177,'_reasons_6_number','field_5ffca0a9a140d'),(7456,177,'reasons_6_title','Break your routine'),(7457,177,'_reasons_6_title','field_5ffca1c17dcbd'),(7458,177,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(7459,177,'_reasons_6_content','field_5ffca1d37dcbe'),(7460,177,'reasons_6_static','86'),(7461,177,'_reasons_6_static','field_5ffca9f36c9c1'),(7462,177,'reasons_6_animate','0'),(7463,177,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(7464,177,'reasons_6_background_color','darkgray'),(7465,177,'_reasons_6_background_color','field_5ffca2087dcc0'),(7466,177,'reasons_6_background_image',''),(7467,177,'_reasons_6_background_image','field_5ffca965f8d44'),(7468,177,'reasons_7_text','Reason'),(7469,177,'_reasons_7_text','field_5ffca05ea140c'),(7470,177,'reasons_7_number','8'),(7471,177,'_reasons_7_number','field_5ffca0a9a140d'),(7472,177,'reasons_7_title','Your pace, your training'),(7473,177,'_reasons_7_title','field_5ffca1c17dcbd'),(7474,177,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(7475,177,'_reasons_7_content','field_5ffca1d37dcbe'),(7476,177,'reasons_7_static','74'),(7477,177,'_reasons_7_static','field_5ffca9f36c9c1'),(7478,177,'reasons_7_animate','0'),(7479,177,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(7480,177,'reasons_7_background_color','white'),(7481,177,'_reasons_7_background_color','field_5ffca2087dcc0'),(7482,177,'reasons_7_background_image',''),(7483,177,'_reasons_7_background_image','field_5ffca965f8d44'),(7484,177,'reasons_8_text','Reason'),(7485,177,'_reasons_8_text','field_5ffca05ea140c'),(7486,177,'reasons_8_number','9'),(7487,177,'_reasons_8_number','field_5ffca0a9a140d'),(7488,177,'reasons_8_title','Expertly crafted workouts'),(7489,177,'_reasons_8_title','field_5ffca1c17dcbd'),(7490,177,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(7491,177,'_reasons_8_content','field_5ffca1d37dcbe'),(7492,177,'reasons_8_static','75'),(7493,177,'_reasons_8_static','field_5ffca9f36c9c1'),(7494,177,'reasons_8_animate','0'),(7495,177,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(7496,177,'reasons_8_background_color','lightgray3'),(7497,177,'_reasons_8_background_color','field_5ffca2087dcc0'),(7498,177,'reasons_8_background_image',''),(7499,177,'_reasons_8_background_image','field_5ffca965f8d44'),(7500,177,'reasons_9_text','Reason'),(7501,177,'_reasons_9_text','field_5ffca05ea140c'),(7502,177,'reasons_9_number','10'),(7503,177,'_reasons_9_number','field_5ffca0a9a140d'),(7504,177,'reasons_9_title','Convenient class times'),(7505,177,'_reasons_9_title','field_5ffca1c17dcbd'),(7506,177,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(7507,177,'_reasons_9_content','field_5ffca1d37dcbe'),(7508,177,'reasons_9_static','76'),(7509,177,'_reasons_9_static','field_5ffca9f36c9c1'),(7510,177,'reasons_9_animate','0'),(7511,177,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(7512,177,'reasons_9_background_color','darkgray'),(7513,177,'_reasons_9_background_color','field_5ffca2087dcc0'),(7514,177,'reasons_9_background_image',''),(7515,177,'_reasons_9_background_image','field_5ffca965f8d44'),(7516,177,'reasons','10'),(7517,177,'_reasons','field_5ffc9fa9a140a'),(7518,177,'reasons_1_second_image','59'),(7519,177,'_reasons_1_second_image','field_5ffcab35014a4'),(7520,177,'reasons_4_second_image','67'),(7521,177,'_reasons_4_second_image','field_5ffcab35014a4'),(7522,177,'reasons_6_second_image','72'),(7523,177,'_reasons_6_second_image','field_5ffcab35014a4'),(7524,177,'reasons_2_animated','82'),(7525,177,'_reasons_2_animated','field_5ffcaa376c9c3'),(7526,177,'reasons_4_background_image_static','69'),(7527,177,'_reasons_4_background_image_static','field_5ffca843bd901'),(7528,177,'reasons_4_background_image_animated','84'),(7529,177,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(7530,177,'reasons_5_background_image_static','70'),(7531,177,'_reasons_5_background_image_static','field_5ffca843bd901'),(7532,177,'reasons_5_background_image_animated','140'),(7533,177,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(7534,177,'video_text','Don’t take our word for it, take theirs'),(7535,177,'_video_text','field_5ffdc81396903'),(7536,177,'background_video','142'),(7537,177,'_background_video','field_5ffdc987496e6'),(7538,177,'video','143'),(7539,177,'_video','field_5ffdc82f96904'),(7540,177,'subtitle_reasons','To Start Training Now'),(7541,177,'_subtitle_reasons','field_6011d4f64bc04'),(7544,180,'_wp_attached_file','2021/02/OA_HeroImage_FG_3840x2132_v100.png'),(7545,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2132;s:4:\"file\";s:42:\"2021/02/OA_HeroImage_FG_3840x2132_v100.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"OA_HeroImage_FG_3840x2132_v100-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"OA_HeroImage_FG_3840x2132_v100-1024x569.png\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"OA_HeroImage_FG_3840x2132_v100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"OA_HeroImage_FG_3840x2132_v100-768x426.png\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"OA_HeroImage_FG_3840x2132_v100-1536x853.png\";s:5:\"width\";i:1536;s:6:\"height\";i:853;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"OA_HeroImage_FG_3840x2132_v100-2048x1137.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1137;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"OA_HeroImage_FG_3840x2132_v100-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:44:\"OA_HeroImage_FG_3840x2132_v100-1536x1540.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1540;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:43:\"OA_HeroImage_FG_3840x2132_v100-880x1480.png\";s:5:\"width\";i:880;s:6:\"height\";i:1480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"bg-video-desktop\";a:4:{s:4:\"file\";s:43:\"OA_HeroImage_FG_3840x2132_v100-1440x500.png\";s:5:\"width\";i:1440;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-tablet\";a:4:{s:4:\"file\";s:42:\"OA_HeroImage_FG_3840x2132_v100-768x500.png\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:42:\"OA_HeroImage_FG_3840x2132_v100-400x600.png\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7546,181,'title_gold',''),(7547,181,'_title_gold','field_5ffc850fff400'),(7548,181,'title_white','One Academy Virtual'),(7549,181,'_title_white','field_5ffc8523ff401'),(7550,181,'value','25'),(7551,181,'_value','field_5ffc87023f4a1'),(7552,181,'text_banner','1-Week Unlimited Virtual Classes'),(7553,181,'_text_banner','field_5ffc87313f4a2'),(7554,181,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(7555,181,'_link_button','field_5ffc87543f4a3'),(7556,181,'text_button_banner','Start Now'),(7557,181,'_text_button_banner','field_5ffc87833f4a4'),(7558,181,'text_button_scroll_top','Book Now'),(7559,181,'_text_button_scroll_top','field_5ffc87983f4a5'),(7560,181,'background_banner','179'),(7561,181,'_background_banner','field_5ffc85ebcc1e9'),(7562,181,'static_image','180'),(7563,181,'_static_image','field_5ffc85fdcc1ea'),(7564,181,'animated','0'),(7565,181,'_animated','field_5ffc8668cc1eb'),(7566,181,'animated_image','80'),(7567,181,'_animated_image','field_5ffc8683cc1ec'),(7568,181,'title_reasons','10 Reasons'),(7569,181,'_title_reasons','field_5ffc9f7220389'),(7570,181,'reasons_0_text','Reason'),(7571,181,'_reasons_0_text','field_5ffca05ea140c'),(7572,181,'reasons_0_number','1'),(7573,181,'_reasons_0_number','field_5ffca0a9a140d'),(7574,181,'reasons_0_title','Get ready to turn your home into your new gym'),(7575,181,'_reasons_0_title','field_5ffca1c17dcbd'),(7576,181,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(7577,181,'_reasons_0_content','field_5ffca1d37dcbe'),(7578,181,'reasons_0_static','54'),(7579,181,'_reasons_0_static','field_5ffca9f36c9c1'),(7580,181,'reasons_0_animate','0'),(7581,181,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(7582,181,'reasons_0_background_color','lightgray2'),(7583,181,'_reasons_0_background_color','field_5ffca2087dcc0'),(7584,181,'reasons_0_background_image','56'),(7585,181,'_reasons_0_background_image','field_5ffca965f8d44'),(7586,181,'reasons_1_text','Reason'),(7587,181,'_reasons_1_text','field_5ffca05ea140c'),(7588,181,'reasons_1_number','2'),(7589,181,'_reasons_1_number','field_5ffca0a9a140d'),(7590,181,'reasons_1_title','Toronto’s best gym'),(7591,181,'_reasons_1_title','field_5ffca1c17dcbd'),(7592,181,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(7593,181,'_reasons_1_content','field_5ffca1d37dcbe'),(7594,181,'reasons_1_static','58'),(7595,181,'_reasons_1_static','field_5ffca9f36c9c1'),(7596,181,'reasons_1_animate','0'),(7597,181,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(7598,181,'reasons_1_background_color','darkgray'),(7599,181,'_reasons_1_background_color','field_5ffca2087dcc0'),(7600,181,'reasons_1_background_image',''),(7601,181,'_reasons_1_background_image','field_5ffca965f8d44'),(7602,181,'reasons_2_text','Reason'),(7603,181,'_reasons_2_text','field_5ffca05ea140c'),(7604,181,'reasons_2_number','3'),(7605,181,'_reasons_2_number','field_5ffca0a9a140d'),(7606,181,'reasons_2_title','Virtual classes with live coaches'),(7607,181,'_reasons_2_title','field_5ffca1c17dcbd'),(7608,181,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(7609,181,'_reasons_2_content','field_5ffca1d37dcbe'),(7610,181,'reasons_2_static','61'),(7611,181,'_reasons_2_static','field_5ffca9f36c9c1'),(7612,181,'reasons_2_animate','1'),(7613,181,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(7614,181,'reasons_2_background_color','white'),(7615,181,'_reasons_2_background_color','field_5ffca2087dcc0'),(7616,181,'reasons_2_background_image',''),(7617,181,'_reasons_2_background_image','field_5ffca965f8d44'),(7618,181,'reasons_3_text','Reason'),(7619,181,'_reasons_3_text','field_5ffca05ea140c'),(7620,181,'reasons_3_number','4'),(7621,181,'_reasons_3_number','field_5ffca0a9a140d'),(7622,181,'reasons_3_title','One community'),(7623,181,'_reasons_3_title','field_5ffca1c17dcbd'),(7624,181,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(7625,181,'_reasons_3_content','field_5ffca1d37dcbe'),(7626,181,'reasons_3_static','64'),(7627,181,'_reasons_3_static','field_5ffca9f36c9c1'),(7628,181,'reasons_3_animate','0'),(7629,181,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(7630,181,'reasons_3_background_color','darkgray'),(7631,181,'_reasons_3_background_color','field_5ffca2087dcc0'),(7632,181,'reasons_3_background_image','65'),(7633,181,'_reasons_3_background_image','field_5ffca965f8d44'),(7634,181,'reasons_4_text','Reason'),(7635,181,'_reasons_4_text','field_5ffca05ea140c'),(7636,181,'reasons_4_number','5'),(7637,181,'_reasons_4_number','field_5ffca0a9a140d'),(7638,181,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(7639,181,'_reasons_4_title','field_5ffca1c17dcbd'),(7640,181,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(7641,181,'_reasons_4_content','field_5ffca1d37dcbe'),(7642,181,'reasons_4_static',''),(7643,181,'_reasons_4_static','field_5ffca9f36c9c1'),(7644,181,'reasons_4_animate','0'),(7645,181,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(7646,181,'reasons_4_background_color','video'),(7647,181,'_reasons_4_background_color','field_5ffca2087dcc0'),(7648,181,'reasons_4_background_image',''),(7649,181,'_reasons_4_background_image','field_5ffca965f8d44'),(7650,181,'reasons_5_text','Reason'),(7651,181,'_reasons_5_text','field_5ffca05ea140c'),(7652,181,'reasons_5_number','6'),(7653,181,'_reasons_5_number','field_5ffca0a9a140d'),(7654,181,'reasons_5_title','More members means you pay less'),(7655,181,'_reasons_5_title','field_5ffca1c17dcbd'),(7656,181,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(7657,181,'_reasons_5_content','field_5ffca1d37dcbe'),(7658,181,'reasons_5_static',''),(7659,181,'_reasons_5_static','field_5ffca9f36c9c1'),(7660,181,'reasons_5_animate','0'),(7661,181,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(7662,181,'reasons_5_background_color','video'),(7663,181,'_reasons_5_background_color','field_5ffca2087dcc0'),(7664,181,'reasons_5_background_image',''),(7665,181,'_reasons_5_background_image','field_5ffca965f8d44'),(7666,181,'reasons_6_text','Reason'),(7667,181,'_reasons_6_text','field_5ffca05ea140c'),(7668,181,'reasons_6_number','7'),(7669,181,'_reasons_6_number','field_5ffca0a9a140d'),(7670,181,'reasons_6_title','Break your routine'),(7671,181,'_reasons_6_title','field_5ffca1c17dcbd'),(7672,181,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(7673,181,'_reasons_6_content','field_5ffca1d37dcbe'),(7674,181,'reasons_6_static','86'),(7675,181,'_reasons_6_static','field_5ffca9f36c9c1'),(7676,181,'reasons_6_animate','0'),(7677,181,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(7678,181,'reasons_6_background_color','darkgray'),(7679,181,'_reasons_6_background_color','field_5ffca2087dcc0'),(7680,181,'reasons_6_background_image',''),(7681,181,'_reasons_6_background_image','field_5ffca965f8d44'),(7682,181,'reasons_7_text','Reason'),(7683,181,'_reasons_7_text','field_5ffca05ea140c'),(7684,181,'reasons_7_number','8'),(7685,181,'_reasons_7_number','field_5ffca0a9a140d'),(7686,181,'reasons_7_title','Your pace, your training'),(7687,181,'_reasons_7_title','field_5ffca1c17dcbd'),(7688,181,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(7689,181,'_reasons_7_content','field_5ffca1d37dcbe'),(7690,181,'reasons_7_static','74'),(7691,181,'_reasons_7_static','field_5ffca9f36c9c1'),(7692,181,'reasons_7_animate','0'),(7693,181,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(7694,181,'reasons_7_background_color','white'),(7695,181,'_reasons_7_background_color','field_5ffca2087dcc0'),(7696,181,'reasons_7_background_image',''),(7697,181,'_reasons_7_background_image','field_5ffca965f8d44'),(7698,181,'reasons_8_text','Reason'),(7699,181,'_reasons_8_text','field_5ffca05ea140c'),(7700,181,'reasons_8_number','9'),(7701,181,'_reasons_8_number','field_5ffca0a9a140d'),(7702,181,'reasons_8_title','Expertly crafted workouts'),(7703,181,'_reasons_8_title','field_5ffca1c17dcbd'),(7704,181,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(7705,181,'_reasons_8_content','field_5ffca1d37dcbe'),(7706,181,'reasons_8_static','75'),(7707,181,'_reasons_8_static','field_5ffca9f36c9c1'),(7708,181,'reasons_8_animate','0'),(7709,181,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(7710,181,'reasons_8_background_color','lightgray3'),(7711,181,'_reasons_8_background_color','field_5ffca2087dcc0'),(7712,181,'reasons_8_background_image',''),(7713,181,'_reasons_8_background_image','field_5ffca965f8d44'),(7714,181,'reasons_9_text','Reason'),(7715,181,'_reasons_9_text','field_5ffca05ea140c'),(7716,181,'reasons_9_number','10'),(7717,181,'_reasons_9_number','field_5ffca0a9a140d'),(7718,181,'reasons_9_title','Convenient class times'),(7719,181,'_reasons_9_title','field_5ffca1c17dcbd'),(7720,181,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(7721,181,'_reasons_9_content','field_5ffca1d37dcbe'),(7722,181,'reasons_9_static','76'),(7723,181,'_reasons_9_static','field_5ffca9f36c9c1'),(7724,181,'reasons_9_animate','0'),(7725,181,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(7726,181,'reasons_9_background_color','darkgray'),(7727,181,'_reasons_9_background_color','field_5ffca2087dcc0'),(7728,181,'reasons_9_background_image',''),(7729,181,'_reasons_9_background_image','field_5ffca965f8d44'),(7730,181,'reasons','10'),(7731,181,'_reasons','field_5ffc9fa9a140a'),(7732,181,'reasons_1_second_image','59'),(7733,181,'_reasons_1_second_image','field_5ffcab35014a4'),(7734,181,'reasons_4_second_image','67'),(7735,181,'_reasons_4_second_image','field_5ffcab35014a4'),(7736,181,'reasons_6_second_image','72'),(7737,181,'_reasons_6_second_image','field_5ffcab35014a4'),(7738,181,'reasons_2_animated','82'),(7739,181,'_reasons_2_animated','field_5ffcaa376c9c3'),(7740,181,'reasons_4_background_image_static','69'),(7741,181,'_reasons_4_background_image_static','field_5ffca843bd901'),(7742,181,'reasons_4_background_image_animated','84'),(7743,181,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(7744,181,'reasons_5_background_image_static','70'),(7745,181,'_reasons_5_background_image_static','field_5ffca843bd901'),(7746,181,'reasons_5_background_image_animated','140'),(7747,181,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(7748,181,'video_text','Don’t take our word for it, take theirs'),(7749,181,'_video_text','field_5ffdc81396903'),(7750,181,'background_video','142'),(7751,181,'_background_video','field_5ffdc987496e6'),(7752,181,'video','143'),(7753,181,'_video','field_5ffdc82f96904'),(7754,181,'subtitle_reasons','To Start Training Now'),(7755,181,'_subtitle_reasons','field_6011d4f64bc04'),(7756,183,'_wp_attached_file','2021/02/OA_HeroImage_Desktop_BG_3842x2270.png'),(7757,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3840;s:6:\"height\";i:2270;s:4:\"file\";s:45:\"2021/02/OA_HeroImage_Desktop_BG_3842x2270.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"OA_HeroImage_Desktop_BG_3842x2270-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"OA_HeroImage_Desktop_BG_3842x2270-1024x605.png\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"OA_HeroImage_Desktop_BG_3842x2270-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"OA_HeroImage_Desktop_BG_3842x2270-768x454.png\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"OA_HeroImage_Desktop_BG_3842x2270-1536x908.png\";s:5:\"width\";i:1536;s:6:\"height\";i:908;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"OA_HeroImage_Desktop_BG_3842x2270-2048x1211.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1211;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"OA_HeroImage_Desktop_BG_3842x2270-1060x655.png\";s:5:\"width\";i:1060;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-tablet\";a:4:{s:4:\"file\";s:47:\"OA_HeroImage_Desktop_BG_3842x2270-1536x1540.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1540;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"banner-mobile\";a:4:{s:4:\"file\";s:46:\"OA_HeroImage_Desktop_BG_3842x2270-880x1480.png\";s:5:\"width\";i:880;s:6:\"height\";i:1480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"bg-video-desktop\";a:4:{s:4:\"file\";s:46:\"OA_HeroImage_Desktop_BG_3842x2270-1440x500.png\";s:5:\"width\";i:1440;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-tablet\";a:4:{s:4:\"file\";s:45:\"OA_HeroImage_Desktop_BG_3842x2270-768x500.png\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"bg-video-mobile\";a:4:{s:4:\"file\";s:45:\"OA_HeroImage_Desktop_BG_3842x2270-400x600.png\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7758,183,'_wp_attachment_image_alt',''),(7759,184,'title_gold',''),(7760,184,'_title_gold','field_5ffc850fff400'),(7761,184,'title_white','One Academy Virtual'),(7762,184,'_title_white','field_5ffc8523ff401'),(7763,184,'value','25'),(7764,184,'_value','field_5ffc87023f4a1'),(7765,184,'text_banner','1-Week Unlimited Virtual Classes'),(7766,184,'_text_banner','field_5ffc87313f4a2'),(7767,184,'link_button','https://one-transformation-academy.myshopify.com/products/25-virtual-trial-week'),(7768,184,'_link_button','field_5ffc87543f4a3'),(7769,184,'text_button_banner','Start Now'),(7770,184,'_text_button_banner','field_5ffc87833f4a4'),(7771,184,'text_button_scroll_top','Book Now'),(7772,184,'_text_button_scroll_top','field_5ffc87983f4a5'),(7773,184,'background_banner','179'),(7774,184,'_background_banner','field_5ffc85ebcc1e9'),(7775,184,'static_image',''),(7776,184,'_static_image','field_5ffc85fdcc1ea'),(7777,184,'animated','0'),(7778,184,'_animated','field_5ffc8668cc1eb'),(7779,184,'animated_image','80'),(7780,184,'_animated_image','field_5ffc8683cc1ec'),(7781,184,'title_reasons','10 Reasons'),(7782,184,'_title_reasons','field_5ffc9f7220389'),(7783,184,'reasons_0_text','Reason'),(7784,184,'_reasons_0_text','field_5ffca05ea140c'),(7785,184,'reasons_0_number','1'),(7786,184,'_reasons_0_number','field_5ffca0a9a140d'),(7787,184,'reasons_0_title','Get ready to turn your home into your new gym'),(7788,184,'_reasons_0_title','field_5ffca1c17dcbd'),(7789,184,'reasons_0_content','Get 1 week of unlimited Virtual Classes for only $25. You probably don’t need any more reasons, but we’ve got plenty - check them out.'),(7790,184,'_reasons_0_content','field_5ffca1d37dcbe'),(7791,184,'reasons_0_static','54'),(7792,184,'_reasons_0_static','field_5ffca9f36c9c1'),(7793,184,'reasons_0_animate','0'),(7794,184,'_reasons_0_animate','field_5ffcaa1a6c9c2'),(7795,184,'reasons_0_background_color','lightgray2'),(7796,184,'_reasons_0_background_color','field_5ffca2087dcc0'),(7797,184,'reasons_0_background_image','56'),(7798,184,'_reasons_0_background_image','field_5ffca965f8d44'),(7799,184,'reasons_1_text','Reason'),(7800,184,'_reasons_1_text','field_5ffca05ea140c'),(7801,184,'reasons_1_number','2'),(7802,184,'_reasons_1_number','field_5ffca0a9a140d'),(7803,184,'reasons_1_title','Toronto’s best gym'),(7804,184,'_reasons_1_title','field_5ffca1c17dcbd'),(7805,184,'reasons_1_content','We’ve got the accolades to back it up. Get ready to bring the best of our gym and our coaches into your home and crush every class.'),(7806,184,'_reasons_1_content','field_5ffca1d37dcbe'),(7807,184,'reasons_1_static','58'),(7808,184,'_reasons_1_static','field_5ffca9f36c9c1'),(7809,184,'reasons_1_animate','0'),(7810,184,'_reasons_1_animate','field_5ffcaa1a6c9c2'),(7811,184,'reasons_1_background_color','darkgray'),(7812,184,'_reasons_1_background_color','field_5ffca2087dcc0'),(7813,184,'reasons_1_background_image',''),(7814,184,'_reasons_1_background_image','field_5ffca965f8d44'),(7815,184,'reasons_2_text','Reason'),(7816,184,'_reasons_2_text','field_5ffca05ea140c'),(7817,184,'reasons_2_number','3'),(7818,184,'_reasons_2_number','field_5ffca0a9a140d'),(7819,184,'reasons_2_title','Virtual classes with live coaches'),(7820,184,'_reasons_2_title','field_5ffca1c17dcbd'),(7821,184,'reasons_2_content','With one live trainer for every class, you get real-time feedback, form correction and motivation to push your progress.'),(7822,184,'_reasons_2_content','field_5ffca1d37dcbe'),(7823,184,'reasons_2_static','61'),(7824,184,'_reasons_2_static','field_5ffca9f36c9c1'),(7825,184,'reasons_2_animate','1'),(7826,184,'_reasons_2_animate','field_5ffcaa1a6c9c2'),(7827,184,'reasons_2_background_color','white'),(7828,184,'_reasons_2_background_color','field_5ffca2087dcc0'),(7829,184,'reasons_2_background_image',''),(7830,184,'_reasons_2_background_image','field_5ffca965f8d44'),(7831,184,'reasons_3_text','Reason'),(7832,184,'_reasons_3_text','field_5ffca05ea140c'),(7833,184,'reasons_3_number','4'),(7834,184,'_reasons_3_number','field_5ffca0a9a140d'),(7835,184,'reasons_3_title','One community'),(7836,184,'_reasons_3_title','field_5ffca1c17dcbd'),(7837,184,'reasons_3_content','You become part of the One Academy Community and get fired up with the support and encouragement of our coaches and members.'),(7838,184,'_reasons_3_content','field_5ffca1d37dcbe'),(7839,184,'reasons_3_static','64'),(7840,184,'_reasons_3_static','field_5ffca9f36c9c1'),(7841,184,'reasons_3_animate','0'),(7842,184,'_reasons_3_animate','field_5ffcaa1a6c9c2'),(7843,184,'reasons_3_background_color','darkgray'),(7844,184,'_reasons_3_background_color','field_5ffca2087dcc0'),(7845,184,'reasons_3_background_image','65'),(7846,184,'_reasons_3_background_image','field_5ffca965f8d44'),(7847,184,'reasons_4_text','Reason'),(7848,184,'_reasons_4_text','field_5ffca05ea140c'),(7849,184,'reasons_4_number','5'),(7850,184,'_reasons_4_number','field_5ffca0a9a140d'),(7851,184,'reasons_4_title','Try HiFlux™: Canada’s most effective training program'),(7852,184,'_reasons_4_title','field_5ffca1c17dcbd'),(7853,184,'reasons_4_content','Whether you’re a fitness junkie or a newbie, our HiFlux™ training tests your will. Your training constantly evolves as your muscles adapt, so you keep getting stronger.'),(7854,184,'_reasons_4_content','field_5ffca1d37dcbe'),(7855,184,'reasons_4_static',''),(7856,184,'_reasons_4_static','field_5ffca9f36c9c1'),(7857,184,'reasons_4_animate','0'),(7858,184,'_reasons_4_animate','field_5ffcaa1a6c9c2'),(7859,184,'reasons_4_background_color','video'),(7860,184,'_reasons_4_background_color','field_5ffca2087dcc0'),(7861,184,'reasons_4_background_image',''),(7862,184,'_reasons_4_background_image','field_5ffca965f8d44'),(7863,184,'reasons_5_text','Reason'),(7864,184,'_reasons_5_text','field_5ffca05ea140c'),(7865,184,'reasons_5_number','6'),(7866,184,'_reasons_5_number','field_5ffca0a9a140d'),(7867,184,'reasons_5_title','More members means you pay less'),(7868,184,'_reasons_5_title','field_5ffca1c17dcbd'),(7869,184,'reasons_5_content','Our dynamic pricing model means the more members that join, the less you pay. For real.'),(7870,184,'_reasons_5_content','field_5ffca1d37dcbe'),(7871,184,'reasons_5_static',''),(7872,184,'_reasons_5_static','field_5ffca9f36c9c1'),(7873,184,'reasons_5_animate','0'),(7874,184,'_reasons_5_animate','field_5ffcaa1a6c9c2'),(7875,184,'reasons_5_background_color','video'),(7876,184,'_reasons_5_background_color','field_5ffca2087dcc0'),(7877,184,'reasons_5_background_image',''),(7878,184,'_reasons_5_background_image','field_5ffca965f8d44'),(7879,184,'reasons_6_text','Reason'),(7880,184,'_reasons_6_text','field_5ffca05ea140c'),(7881,184,'reasons_6_number','7'),(7882,184,'_reasons_6_number','field_5ffca0a9a140d'),(7883,184,'reasons_6_title','Break your routine'),(7884,184,'_reasons_6_title','field_5ffca1c17dcbd'),(7885,184,'reasons_6_content','With no repeat classes, your HiFlux™ training routine will always increase in intensity to challenge you in new ways.'),(7886,184,'_reasons_6_content','field_5ffca1d37dcbe'),(7887,184,'reasons_6_static','86'),(7888,184,'_reasons_6_static','field_5ffca9f36c9c1'),(7889,184,'reasons_6_animate','0'),(7890,184,'_reasons_6_animate','field_5ffcaa1a6c9c2'),(7891,184,'reasons_6_background_color','darkgray'),(7892,184,'_reasons_6_background_color','field_5ffca2087dcc0'),(7893,184,'reasons_6_background_image',''),(7894,184,'_reasons_6_background_image','field_5ffca965f8d44'),(7895,184,'reasons_7_text','Reason'),(7896,184,'_reasons_7_text','field_5ffca05ea140c'),(7897,184,'reasons_7_number','8'),(7898,184,'_reasons_7_number','field_5ffca0a9a140d'),(7899,184,'reasons_7_title','Your pace, your training'),(7900,184,'_reasons_7_title','field_5ffca1c17dcbd'),(7901,184,'reasons_7_content','Train at your preferred pace with zero intimidation factor and infinite encouragement. No matter your fitness level, you’ll feel supported and encouraged every class at One Academy.'),(7902,184,'_reasons_7_content','field_5ffca1d37dcbe'),(7903,184,'reasons_7_static','74'),(7904,184,'_reasons_7_static','field_5ffca9f36c9c1'),(7905,184,'reasons_7_animate','0'),(7906,184,'_reasons_7_animate','field_5ffcaa1a6c9c2'),(7907,184,'reasons_7_background_color','white'),(7908,184,'_reasons_7_background_color','field_5ffca2087dcc0'),(7909,184,'reasons_7_background_image',''),(7910,184,'_reasons_7_background_image','field_5ffca965f8d44'),(7911,184,'reasons_8_text','Reason'),(7912,184,'_reasons_8_text','field_5ffca05ea140c'),(7913,184,'reasons_8_number','9'),(7914,184,'_reasons_8_number','field_5ffca0a9a140d'),(7915,184,'reasons_8_title','Expertly crafted workouts'),(7916,184,'_reasons_8_title','field_5ffca1c17dcbd'),(7917,184,'reasons_8_content','You build your schedule and routine and we’ll build the workouts. Choose the class time and workout that’s right for your training schedule.'),(7918,184,'_reasons_8_content','field_5ffca1d37dcbe'),(7919,184,'reasons_8_static','75'),(7920,184,'_reasons_8_static','field_5ffca9f36c9c1'),(7921,184,'reasons_8_animate','0'),(7922,184,'_reasons_8_animate','field_5ffcaa1a6c9c2'),(7923,184,'reasons_8_background_color','lightgray3'),(7924,184,'_reasons_8_background_color','field_5ffca2087dcc0'),(7925,184,'reasons_8_background_image',''),(7926,184,'_reasons_8_background_image','field_5ffca965f8d44'),(7927,184,'reasons_9_text','Reason'),(7928,184,'_reasons_9_text','field_5ffca05ea140c'),(7929,184,'reasons_9_number','10'),(7930,184,'_reasons_9_number','field_5ffca0a9a140d'),(7931,184,'reasons_9_title','Convenient class times'),(7932,184,'_reasons_9_title','field_5ffca1c17dcbd'),(7933,184,'reasons_9_content','Take part in the same class at the same time every day, regardless of the time. Each week your workout evolves for a new challenge.'),(7934,184,'_reasons_9_content','field_5ffca1d37dcbe'),(7935,184,'reasons_9_static','76'),(7936,184,'_reasons_9_static','field_5ffca9f36c9c1'),(7937,184,'reasons_9_animate','0'),(7938,184,'_reasons_9_animate','field_5ffcaa1a6c9c2'),(7939,184,'reasons_9_background_color','darkgray'),(7940,184,'_reasons_9_background_color','field_5ffca2087dcc0'),(7941,184,'reasons_9_background_image',''),(7942,184,'_reasons_9_background_image','field_5ffca965f8d44'),(7943,184,'reasons','10'),(7944,184,'_reasons','field_5ffc9fa9a140a'),(7945,184,'reasons_1_second_image','59'),(7946,184,'_reasons_1_second_image','field_5ffcab35014a4'),(7947,184,'reasons_4_second_image','67'),(7948,184,'_reasons_4_second_image','field_5ffcab35014a4'),(7949,184,'reasons_6_second_image','72'),(7950,184,'_reasons_6_second_image','field_5ffcab35014a4'),(7951,184,'reasons_2_animated','82'),(7952,184,'_reasons_2_animated','field_5ffcaa376c9c3'),(7953,184,'reasons_4_background_image_static','69'),(7954,184,'_reasons_4_background_image_static','field_5ffca843bd901'),(7955,184,'reasons_4_background_image_animated','84'),(7956,184,'_reasons_4_background_image_animated','field_5ffca8c8bd902'),(7957,184,'reasons_5_background_image_static','70'),(7958,184,'_reasons_5_background_image_static','field_5ffca843bd901'),(7959,184,'reasons_5_background_image_animated','140'),(7960,184,'_reasons_5_background_image_animated','field_5ffca8c8bd902'),(7961,184,'video_text','Don’t take our word for it, take theirs'),(7962,184,'_video_text','field_5ffdc81396903'),(7963,184,'background_video','142'),(7964,184,'_background_video','field_5ffdc987496e6'),(7965,184,'video','143'),(7966,184,'_video','field_5ffdc82f96904'),(7967,184,'subtitle_reasons','To Start Training Now'),(7968,184,'_subtitle_reasons','field_6011d4f64bc04');
/*!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=185 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2020-12-21 23:03:35','2020-12-21 23:03:35','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2020-12-21 23:03:35','2020-12-21 23:03:35','',0,'https://oneacademy.labcp.co/?p=1',0,'post','',1),(2,1,'2020-12-21 23:03:35','2020-12-21 23:03:35','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://oneacademy.labcp.co//wp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2020-12-21 23:03:35','2020-12-21 23:03:35','',0,'https://oneacademy.labcp.co/?page_id=2',0,'page','',0),(3,1,'2020-12-21 23:03:35','2020-12-21 23:03:35','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://oneacademy.labcp.co.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2020-12-21 23:03:35','2020-12-21 23:03:35','',0,'https://oneacademy.labcp.co/?page_id=3',0,'page','',0),(5,1,'2020-12-21 23:04:48','2020-12-21 23:04:48','','Home','','publish','closed','closed','','home','','','2021-02-18 18:23:21','2021-02-18 18:23:21','',0,'https://oneacademy.labcp.co/?page_id=5',0,'page','',0),(6,1,'2020-12-21 23:04:48','2020-12-21 23:04:48','','Home','','inherit','closed','closed','','5-revision-v1','','','2020-12-21 23:04:48','2020-12-21 23:04:48','',5,'https://oneacademy.labcp.co/2020/12/21/5-revision-v1/',0,'revision','',0),(8,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"post_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:13:\"page-home.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:8:\"seamless\";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:\"\";}','Home','home','publish','closed','closed','','group_5ffc80441772c','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',0,'https://oneacademy.labcp.co/?p=8',0,'acf-field-group','',0),(9,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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;}','Banner','','publish','closed','closed','','field_5ffc8076ff3fe','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=9',0,'acf-field','',0),(10,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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;}','Title','','publish','closed','closed','','field_5ffc84f0ff3ff','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=10',1,'acf-field','',0),(11,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:11:\"One Academy\";s:11:\"placeholder\";s:11:\"One Academy\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Gold','title_gold','publish','closed','closed','','field_5ffc850fff400','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=11',2,'acf-field','',0),(12,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:7:\"Virtual\";s:11:\"placeholder\";s:7:\"Virtual\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title White','title_white','publish','closed','closed','','field_5ffc8523ff401','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=12',3,'acf-field','',0),(13,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:12:{s:4:\"type\";s:6:\"number\";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:5:\"33.33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";i:25;s:7:\"prepend\";s:1:\"$\";s:6:\"append\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:4:\"step\";s:0:\"\";}','Value','value','publish','closed','closed','','field_5ffc87023f4a1','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=13',4,'acf-field','',0),(14,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:10:{s:4:\"type\";s:8:\"textarea\";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:5:\"33.33\";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\";i:2;s:9:\"new_lines\";s:2:\"br\";}','Text','text_banner','publish','closed','closed','','field_5ffc87313f4a2','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=14',5,'acf-field','',0),(15,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:5:\"33.33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link Button','link_button','publish','closed','closed','','field_5ffc87543f4a3','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=15',6,'acf-field','',0),(16,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"50\";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:\"\";}','Text Button Banner','text_button_banner','publish','closed','closed','','field_5ffc87833f4a4','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=16',7,'acf-field','',0),(17,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:35:\"Fill in if you want different texts\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";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:\"\";}','Text Button Scroll Top','text_button_scroll_top','publish','closed','closed','','field_5ffc87983f4a5','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=17',8,'acf-field','',0),(18,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:5:\"array\";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:\"\";}','Background','background_banner','publish','closed','closed','','field_5ffc85ebcc1e9','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=18',9,'acf-field','',0),(19,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Static image','static_image','publish','closed','closed','','field_5ffc85fdcc1ea','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=19',10,'acf-field','',0),(20,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:1;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Animated','animated','publish','closed','closed','','field_5ffc8668cc1eb','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=20',11,'acf-field','',0),(21,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffc8668cc1eb\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Animated image','animated_image','publish','closed','closed','','field_5ffc8683cc1ec','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=21',12,'acf-field','',0),(22,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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;}','Reasons','','publish','closed','closed','','field_5ffc9f4d20388','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=22',13,'acf-field','',0),(23,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:10:\"10 Reasons\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title_reasons','publish','closed','closed','','field_5ffc9f7220389','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=23',14,'acf-field','',0),(24,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:19:\"field_5ffca0a9a140d\";s:3:\"min\";i:1;s:3:\"max\";i:10;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:10:\"Add Reason\";}','Reasons','reasons','publish','closed','closed','','field_5ffc9fa9a140a','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=24',16,'acf-field','',0),(25,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:8:{s:4:\"type\";s:9:\"accordion\";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:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Reason','','publish','closed','closed','','field_5ffca040a140b','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=25',0,'acf-field','',0),(26,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:6:\"Reason\";s:11:\"placeholder\";s:6:\"Reason\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_5ffca05ea140c','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=26',1,'acf-field','',0),(27,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:13:{s:4:\"type\";s:6:\"select\";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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:10:{i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";}s:13:\"default_value\";b:0;s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Number','number','publish','closed','closed','','field_5ffca0a9a140d','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=27',2,'acf-field','',0),(28,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:8:{s:4:\"type\";s:9:\"accordion\";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:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Content','','publish','closed','closed','','field_5ffca1b77dcbc','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=28',3,'acf-field','',0),(29,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:10:{s:4:\"type\";s:8:\"textarea\";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:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:2;s:9:\"new_lines\";s:2:\"br\";}','Title','title','publish','closed','closed','','field_5ffca1c17dcbd','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=29',4,'acf-field','',0),(30,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:10:{s:4:\"type\";s:8:\"textarea\";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:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:4;s:9:\"new_lines\";s:2:\"br\";}','content','content','publish','closed','closed','','field_5ffca1d37dcbe','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=30',5,'acf-field','',0),(31,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:8:{s:4:\"type\";s:9:\"accordion\";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:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Image','','publish','closed','closed','','field_5ffca9e66c9c0','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=31',6,'acf-field','',0),(32,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Static','static','publish','closed','closed','','field_5ffca9f36c9c1','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=32',7,'acf-field','',0),(33,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','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:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";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:\"\";}','Animate','animate','publish','closed','closed','','field_5ffcaa1a6c9c2','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=33',8,'acf-field','',0),(34,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffcaa1a6c9c2\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Animated','animated','publish','closed','closed','','field_5ffcaa376c9c3','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=34',9,'acf-field','',0),(35,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:3:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffca0a9a140d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"2\";}}i:1;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffca0a9a140d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"5\";}}i:2;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffca0a9a140d\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"7\";}}}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: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:\"\";}','Second Image','second_image','publish','closed','closed','','field_5ffcab35014a4','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=35',10,'acf-field','',0),(36,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:8:{s:4:\"type\";s:9:\"accordion\";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:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Settings','','publish','closed','closed','','field_5ffca1f47dcbf','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=36',11,'acf-field','',0),(37,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:13:{s:4:\"type\";s:6:\"select\";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:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:10:\"lightgray2\";s:4:\"Gray\";s:10:\"lightgray3\";s:10:\"Light Gray\";s:8:\"darkgray\";s:9:\"Dark Gray\";s:5:\"white\";s:5:\"White\";s:5:\"video\";s:5:\"Image\";}s:13:\"default_value\";b:0;s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','Background Color','background_color','publish','closed','closed','','field_5ffca2087dcc0','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=37',12,'acf-field','',0),(38,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_5ffca2087dcc0\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"video\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Background Image','background_image','publish','closed','closed','','field_5ffca965f8d44','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=38',13,'acf-field','',0),(39,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";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_5ffca2087dcc0\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"video\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Background Image Static','background_image_static','publish','closed','closed','','field_5ffca843bd901','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=39',14,'acf-field','',0),(40,1,'2021-01-11 22:28:18','2021-01-11 22:28:18','a:15:{s:4:\"type\";s:5:\"image\";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_5ffca2087dcc0\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"video\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Background Image Animated','background_image_animated','publish','closed','closed','','field_5ffca8c8bd902','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',24,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=40',15,'acf-field','',0),(41,1,'2021-01-11 22:32:33','2021-01-11 22:32:33','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:32:33','2021-01-11 22:32:33','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(42,1,'2021-01-11 22:33:01','2021-01-11 22:33:01','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:33:01','2021-01-11 22:33:01','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(43,1,'2021-01-11 22:33:32','2021-01-11 22:33:32','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:33:32','2021-01-11 22:33:32','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(44,1,'2021-01-11 22:34:49','2021-01-11 22:34:49','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:34:49','2021-01-11 22:34:49','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(45,1,'2021-01-11 22:36:41','2021-01-11 22:36:41','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:36:41','2021-01-11 22:36:41','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(46,1,'2021-01-11 22:38:48','2021-01-11 22:38:48','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-11 22:38:48','2021-01-11 22:38:48','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(52,1,'2021-01-12 14:54:48','2021-01-12 14:54:48','','womanbanner-mobile','','inherit','open','closed','','womanbanner-mobile','','','2021-01-12 14:54:48','2021-01-12 14:54:48','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/womanbanner-mobile.png',0,'attachment','image/png',0),(53,1,'2021-01-12 14:59:14','2021-01-12 14:59:14','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 14:59:14','2021-01-12 14:59:14','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(54,1,'2021-01-12 14:59:26','2021-01-12 14:59:26','','reason01','','inherit','open','closed','','reason01','','','2021-01-12 14:59:26','2021-01-12 14:59:26','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason01.png',0,'attachment','image/png',0),(55,1,'2021-01-12 14:59:31','2021-01-12 14:59:31','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 14:59:31','2021-01-12 14:59:31','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(56,1,'2021-01-12 14:59:44','2021-01-12 14:59:44','','big-logo','','inherit','open','closed','','big-logo','','','2021-01-12 14:59:44','2021-01-12 14:59:44','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/big-logo.svg',0,'attachment','image/svg+xml',0),(57,1,'2021-01-12 14:59:49','2021-01-12 14:59:49','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 14:59:49','2021-01-12 14:59:49','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(58,1,'2021-01-12 15:00:26','2021-01-12 15:00:26','','reason02','','inherit','open','closed','','reason02','','','2021-01-12 15:00:26','2021-01-12 15:00:26','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason02.png',0,'attachment','image/png',0),(59,1,'2021-01-12 15:01:32','2021-01-12 15:01:32','','selo-reason02','','inherit','open','closed','','selo-reason02','','','2021-01-12 15:01:32','2021-01-12 15:01:32','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/selo-reason02.png',0,'attachment','image/png',0),(60,1,'2021-01-12 15:01:37','2021-01-12 15:01:37','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:01:37','2021-01-12 15:01:37','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(61,1,'2021-01-12 15:02:21','2021-01-12 15:02:21','','reason03','','inherit','open','closed','','reason03','','','2021-01-12 15:02:21','2021-01-12 15:02:21','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason03.png',0,'attachment','image/png',0),(62,1,'2021-01-12 15:03:59','2021-01-12 15:03:59','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:03:59','2021-01-12 15:03:59','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(63,1,'2021-01-12 15:04:18','2021-01-12 15:04:18','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:04:18','2021-01-12 15:04:18','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(64,1,'2021-01-12 15:04:26','2021-01-12 15:04:26','','reason04','','inherit','open','closed','','reason04','','','2021-01-12 15:04:26','2021-01-12 15:04:26','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason04.png',0,'attachment','image/png',0),(65,1,'2021-01-12 15:04:51','2021-01-12 15:04:51','','big-logo2','','inherit','open','closed','','big-logo2','','','2021-01-12 15:04:51','2021-01-12 15:04:51','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/big-logo2.svg',0,'attachment','image/svg+xml',0),(66,1,'2021-01-12 15:04:58','2021-01-12 15:04:58','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:04:58','2021-01-12 15:04:58','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(67,1,'2021-01-12 15:05:24','2021-01-12 15:05:24','','hiflux','','inherit','open','closed','','hiflux','','','2021-01-12 15:05:24','2021-01-12 15:05:24','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/hiflux.svg',0,'attachment','image/svg+xml',0),(68,1,'2021-01-12 15:06:00','2021-01-12 15:06:00','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:06:00','2021-01-12 15:06:00','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(69,1,'2021-01-12 15:07:52','2021-01-12 15:07:52','','reason05','','inherit','open','closed','','reason05','','','2021-01-12 15:07:52','2021-01-12 15:07:52','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason05.png',0,'attachment','image/png',0),(70,1,'2021-01-12 15:09:21','2021-01-12 15:09:21','','reason06','','inherit','open','closed','','reason06','','','2021-01-12 15:09:21','2021-01-12 15:09:21','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason06.png',0,'attachment','image/png',0),(71,1,'2021-01-12 15:10:10','2021-01-12 15:10:10','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:10:10','2021-01-12 15:10:10','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(72,1,'2021-01-12 15:11:05','2021-01-12 15:11:05','','reason07-2','','inherit','open','closed','','reason07-2','','','2021-01-12 15:11:05','2021-01-12 15:11:05','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason07-2.png',0,'attachment','image/png',0),(73,1,'2021-01-12 15:11:21','2021-01-12 15:11:21','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:11:21','2021-01-12 15:11:21','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(74,1,'2021-01-12 15:11:37','2021-01-12 15:11:37','','reason08','','inherit','open','closed','','reason08','','','2021-01-12 15:11:37','2021-01-12 15:11:37','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason08.png',0,'attachment','image/png',0),(75,1,'2021-01-12 15:11:50','2021-01-12 15:11:50','','reason09','','inherit','open','closed','','reason09','','','2021-01-12 15:11:50','2021-01-12 15:11:50','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason09.png',0,'attachment','image/png',0),(76,1,'2021-01-12 15:12:03','2021-01-12 15:12:03','','reason10','','inherit','open','closed','','reason10','','','2021-01-12 15:12:03','2021-01-12 15:12:03','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason10.png',0,'attachment','image/png',0),(77,1,'2021-01-12 15:12:08','2021-01-12 15:12:08','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 15:12:08','2021-01-12 15:12:08','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(78,1,'2021-01-12 17:41:27','2021-01-12 17:41:27','','bgheaderbanner-desktop','','inherit','open','closed','','bgheaderbanner-desktop','','','2021-01-12 18:06:15','2021-01-12 18:06:15','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/bgheaderbanner-desktop.png',0,'attachment','image/png',0),(80,1,'2021-01-12 18:06:08','2021-01-12 18:06:08','','womanbanner-mobile','','inherit','open','closed','','womanbanner-mobile-2','','','2021-01-12 18:06:08','2021-01-12 18:06:08','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/womanbanner-mobile.gif',0,'attachment','image/gif',0),(81,1,'2021-01-12 18:06:15','2021-01-12 18:06:15','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:06:15','2021-01-12 18:06:15','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(82,1,'2021-01-12 18:06:43','2021-01-12 18:06:43','','reason03','','inherit','open','closed','','reason03-2','','','2021-01-12 18:06:43','2021-01-12 18:06:43','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason03.gif',0,'attachment','image/gif',0),(83,1,'2021-01-12 18:06:47','2021-01-12 18:06:47','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:06:47','2021-01-12 18:06:47','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(84,1,'2021-01-12 18:11:26','2021-01-12 18:11:26','','reason05','','inherit','open','closed','','reason05-2','','','2021-01-12 18:11:26','2021-01-12 18:11:26','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason05.gif',0,'attachment','image/gif',0),(85,1,'2021-01-12 18:12:21','2021-01-12 18:12:21','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:12:21','2021-01-12 18:12:21','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(86,1,'2021-01-12 18:25:10','2021-01-12 18:25:10','','reason07','','inherit','open','closed','','reason07','','','2021-01-12 18:25:10','2021-01-12 18:25:10','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason07.png',0,'attachment','image/png',0),(87,1,'2021-01-12 18:25:16','2021-01-12 18:25:16','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:25:16','2021-01-12 18:25:16','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(88,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Video','','publish','closed','closed','','field_5ffdc7fd96902','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=88',17,'acf-field','',0),(89,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:\"\";}','Video Text','video_text','publish','closed','closed','','field_5ffdc81396903','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=89',18,'acf-field','',0),(90,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";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:\"\";}','Background Video','background_video','publish','closed','closed','','field_5ffdc987496e6','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=90',19,'acf-field','',0),(91,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:8:\"min_size\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:3:\"mp4\";}','Video','video','publish','closed','closed','','field_5ffdc82f96904','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&#038;p=91',20,'acf-field','',0),(92,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:11:\"acf-options\";}}}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:\"\";}','Options','options','publish','closed','closed','','group_5ffdcc86af229','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',0,'https://oneacademy.labcp.co/?p=92',0,'acf-field-group','',0),(93,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Header','','publish','closed','closed','','field_5ffde3214c089','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=93',0,'acf-field','',0),(94,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Title','','publish','closed','closed','','field_5ffde3364c08a','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=94',1,'acf-field','',0),(95,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:11:\"One Academy\";s:11:\"placeholder\";s:11:\"One Academy\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Gold','gold_header','publish','closed','closed','','field_5ffde33a4c08b','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=95',2,'acf-field','',0),(96,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:7:\"Virtual\";s:11:\"placeholder\";s:7:\"Virtual\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Black','black_header','publish','closed','closed','','field_5ffde3404c08c','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=96',3,'acf-field','',0),(97,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:5:\"33.33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:9:\"Switch to\";s:11:\"placeholder\";s:9:\"Switch to\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Switch Text 1','switch_text_1','publish','closed','closed','','field_5ffde3b24c08d','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=97',4,'acf-field','',0),(98,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:5:\"33.33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:20:\"One Academy Facility\";s:11:\"placeholder\";s:20:\"One Academy Facility\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Switch Text 2','switch_text_2','publish','closed','closed','','field_5ffde40e4c08e','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=98',5,'acf-field','',0),(99,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:5:\"33.33\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:32:\"https://oneacademylife.com/home/\";s:11:\"placeholder\";s:32:\"https://oneacademylife.com/home/\";}','Link Switch','link_switch','publish','closed','closed','','field_5ffde4234c08f','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=99',6,'acf-field','',0),(100,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Footer','','publish','closed','closed','','field_5ffdcc8ab62af','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=100',7,'acf-field','',0),(101,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Title','','publish','closed','closed','','field_5ffdcd45b62b0','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=101',8,'acf-field','',0),(102,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";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:\"\";}','Gold','gold_footer','publish','closed','closed','','field_5ffdcd77b62b1','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=102',9,'acf-field','',0),(103,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";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:\"\";}','White','white_footer','publish','closed','closed','','field_5ffdcd90b62b2','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=103',10,'acf-field','',0),(104,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','a:10:{s:4:\"type\";s:8:\"textarea\";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:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:2;s:9:\"new_lines\";s:2:\"br\";}','Text Footer','text_footer','publish','closed','closed','','field_5ffdce2e0a038','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=104',11,'acf-field','',0),(105,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link Button','link_button','publish','closed','closed','','field_5ffdce480a039','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=105',12,'acf-field','',0),(106,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";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:\"\";}','Text Button','text_button','publish','closed','closed','','field_5ffdce6a0a03a','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=106',13,'acf-field','',0),(107,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Copyright','','publish','closed','closed','','field_5ffdcf27807ca','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=107',14,'acf-field','',0),(108,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"10\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:2:\"©\";s:11:\"placeholder\";s:2:\"©\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Copyright Symbol','copyright_symbol','publish','closed','closed','','field_5ffdcf3d807cb','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=108',15,'acf-field','',0),(109,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"20\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:9:\"Automatic\";s:9:\"new_lines\";s:7:\"wpautop\";s:8:\"esc_html\";i:0;}','Copyright Year','','publish','closed','closed','','field_5ffdcf6c807cc','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=109',16,'acf-field','',0),(110,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"70\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:35:\"One Academy®. All Rights Reserved.\";s:11:\"placeholder\";s:35:\"One Academy®. All Rights Reserved.\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Copyright Text','copyright_text','publish','closed','closed','','field_5ffdcf9e807cd','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=110',17,'acf-field','',0),(111,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Newsletter','','publish','closed','closed','','field_5ffdd00c82ac9','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=111',18,'acf-field','',0),(112,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:10:\"Newsletter\";s:11:\"placeholder\";s:10:\"Newsletter\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Newsletter','title_newsletter','publish','closed','closed','','field_5ffdd01a82aca','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=112',19,'acf-field','',0),(113,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','a:10:{s:4:\"type\";s:8:\"textarea\";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:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:4;s:9:\"new_lines\";s:2:\"br\";}','Notice','notice','publish','closed','closed','','field_5ffdd04982acb','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=113',20,'acf-field','',0),(114,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Contact Us','','publish','closed','closed','','field_5ffdddb324e80','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=114',21,'acf-field','',0),(115,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:10:\"Contact Us\";s:11:\"placeholder\";s:10:\"Contact Us\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title Contact','title_contact','publish','closed','closed','','field_5ffdddbc24e81','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=115',22,'acf-field','',0),(116,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:\"block\";s:12:\"button_label\";s:10:\"Add Number\";}','Telephones','telephones','publish','closed','closed','','field_5ffdddf424e82','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=116',23,'acf-field','',0),(117,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:16:\"1 (647) 245-8544\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Number','number','publish','closed','closed','','field_5ffdde0824e83','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',116,'https://oneacademy.labcp.co/?post_type=acf-field&p=117',0,'acf-field','',0),(118,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:19:\"field_5ffdde2224e85\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:9:\"Add Email\";}','Emails','emails','publish','closed','closed','','field_5ffdde2224e84','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=118',24,'acf-field','',0),(119,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','a:9:{s:4:\"type\";s:5:\"email\";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:23:\"info@Oneacademylife.com\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Email','email','publish','closed','closed','','field_5ffdde2224e85','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',118,'https://oneacademy.labcp.co/?post_type=acf-field&p=119',0,'acf-field','',0),(120,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','a:10:{s:4:\"type\";s:8:\"textarea\";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:43:\"858 Eastern Ave, Toronto, ON M4L 1A1 Canada\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";i:2;s:9:\"new_lines\";s:2:\"br\";}','Address','address','publish','closed','closed','','field_5ffdde5e24e86','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=120',25,'acf-field','',0),(121,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:5:\"array\";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:\"\";}','Image Contact','image_contact','publish','closed','closed','','field_5ffde654119f4','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=121',26,'acf-field','',0),(122,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Social Networks','','publish','closed','closed','','field_5ffddfea43dc5','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=122',27,'acf-field','',0),(123,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:19:\"field_5ffde08b43dc9\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:18:\"Add Social Network\";}','Social Networks','social_networks','publish','closed','closed','','field_5ffde01343dc6','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',92,'https://oneacademy.labcp.co/?post_type=acf-field&p=123',28,'acf-field','',0),(124,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";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:\"\";}','Name','name','publish','closed','closed','','field_5ffde08b43dc9','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=124',0,'acf-field','',0),(125,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Link','link','publish','closed','closed','','field_5ffde01343dc7','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=125',1,'acf-field','',0),(126,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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;}','Icons','','publish','closed','closed','','field_5ffde0b943dca','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=126',2,'acf-field','',0),(127,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"25\";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: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:\"\";}','Black','black','publish','closed','closed','','field_5ffde0e843dcd','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=127',3,'acf-field','',0),(128,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"25\";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: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:\"\";}','White','white','publish','closed','closed','','field_5ffde0e543dcc','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=128',4,'acf-field','',0),(129,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"25\";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: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:\"\";}','Gold','gold','publish','closed','closed','','field_5ffde07043dc8','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=129',5,'acf-field','',0),(130,1,'2021-01-12 18:34:49','2021-01-12 18:34:49','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:2:\"25\";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: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:\"\";}','Blue','blue','publish','closed','closed','','field_5ffde0d243dcb','','','2021-01-12 18:34:49','2021-01-12 18:34:49','',123,'https://oneacademy.labcp.co/?post_type=acf-field&p=130',6,'acf-field','',0),(131,1,'2021-01-12 18:36:53','2021-01-12 18:36:53','','devices','','inherit','open','closed','','devices','','','2021-01-12 18:36:53','2021-01-12 18:36:53','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/devices.png',0,'attachment','image/png',0),(132,1,'2021-01-12 18:37:32','2021-01-12 18:37:32','','facebook','','inherit','open','closed','','facebook','','','2021-01-12 18:37:32','2021-01-12 18:37:32','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/facebook.svg',0,'attachment','image/svg+xml',0),(133,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','facebook-black','','inherit','open','closed','','facebook-black','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/facebook-black.svg',0,'attachment','image/svg+xml',0),(134,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','facebook-gold','','inherit','open','closed','','facebook-gold','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/facebook-gold.svg',0,'attachment','image/svg+xml',0),(135,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','facebook-hover','','inherit','open','closed','','facebook-hover','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/facebook-hover.svg',0,'attachment','image/svg+xml',0),(136,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','instagram','','inherit','open','closed','','instagram','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/instagram.svg',0,'attachment','image/svg+xml',0),(137,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','instagram-black','','inherit','open','closed','','instagram-black','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/instagram-black.svg',0,'attachment','image/svg+xml',0),(138,1,'2021-01-12 18:37:33','2021-01-12 18:37:33','','instagram-gold','','inherit','open','closed','','instagram-gold','','','2021-01-12 18:37:33','2021-01-12 18:37:33','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/instagram-gold.svg',0,'attachment','image/svg+xml',0),(139,1,'2021-01-12 18:37:34','2021-01-12 18:37:34','','instagram-hover','','inherit','open','closed','','instagram-hover','','','2021-01-12 18:37:34','2021-01-12 18:37:34','',0,'https://oneacademy.labcp.co/app/uploads/2021/01/instagram-hover.svg',0,'attachment','image/svg+xml',0),(140,1,'2021-01-12 18:40:43','2021-01-12 18:40:43','','reason06','','inherit','open','closed','','reason06-2','','','2021-01-12 18:40:43','2021-01-12 18:40:43','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/reason06.gif',0,'attachment','image/gif',0),(141,1,'2021-01-12 18:46:49','2021-01-12 18:46:49','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:46:49','2021-01-12 18:46:49','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(142,1,'2021-01-12 18:47:12','2021-01-12 18:47:12','','bg-video-tablet','','inherit','open','closed','','bg-video-tablet','','','2021-01-12 18:47:12','2021-01-12 18:47:12','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/bg-video-tablet.jpg',0,'attachment','image/jpeg',0),(143,1,'2021-01-12 18:51:56','2021-01-12 18:51:56','','oa-testimonies-hq','','inherit','open','closed','','oa-testimonies-hq','','','2021-01-12 18:51:56','2021-01-12 18:51:56','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/oa-testimonies-hq.mp4',0,'attachment','video/mp4',0),(144,1,'2021-01-12 18:56:49','2021-01-12 18:56:49','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-12 18:56:49','2021-01-12 18:56:49','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(150,1,'2021-01-27 16:14:53','2021-01-27 16:14:53','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:14:53','2021-01-27 16:14:53','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(152,1,'2021-01-27 16:16:27','2021-01-27 16:16:27','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:16:27','2021-01-27 16:16:27','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(155,1,'2021-01-27 16:22:05','2021-01-27 16:22:05','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:22:05','2021-01-27 16:22:05','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(157,1,'2021-01-27 16:23:31','2021-01-27 16:23:31','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:23:31','2021-01-27 16:23:31','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(159,1,'2021-01-27 16:25:31','2021-01-27 16:25:31','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:25:31','2021-01-27 16:25:31','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(161,1,'2021-01-27 16:26:33','2021-01-27 16:26:33','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:26:33','2021-01-27 16:26:33','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(163,1,'2021-01-27 16:28:36','2021-01-27 16:28:36','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:28:36','2021-01-27 16:28:36','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(165,1,'2021-01-27 16:29:42','2021-01-27 16:29:42','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:29:42','2021-01-27 16:29:42','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(167,1,'2021-01-27 16:30:17','2021-01-27 16:30:17','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:30:17','2021-01-27 16:30:17','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(170,1,'2021-01-27 16:33:33','2021-01-27 16:33:33','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 16:33:33','2021-01-27 16:33:33','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(172,1,'2021-01-27 17:00:56','2021-01-27 17:00:56','','imgdd','','inherit','open','closed','','imgdd','','','2021-01-27 17:00:56','2021-01-27 17:00:56','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/imgdd.png',0,'attachment','image/png',0),(173,1,'2021-01-27 17:01:04','2021-01-27 17:01:04','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 17:01:04','2021-01-27 17:01:04','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(174,1,'2021-01-27 17:02:38','2021-01-27 17:02:38','','bg2','','inherit','open','closed','','bg2','','','2021-01-27 17:02:38','2021-01-27 17:02:38','',5,'https://oneacademy.labcp.co/app/uploads/2021/01/bg2.jpg',0,'attachment','image/jpeg',0),(175,1,'2021-01-27 17:02:44','2021-01-27 17:02:44','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 17:02:44','2021-01-27 17:02:44','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(176,1,'2021-01-27 21:49:40','2021-01-27 21:49:40','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:21:\"To Start Training Now\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subtitle','subtitle_reasons','publish','closed','closed','','field_6011d4f64bc04','','','2021-01-27 21:49:40','2021-01-27 21:49:40','',8,'https://oneacademy.labcp.co/?post_type=acf-field&p=176',15,'acf-field','',0),(177,1,'2021-01-27 21:50:26','2021-01-27 21:50:26','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-01-27 21:50:26','2021-01-27 21:50:26','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(180,1,'2021-02-11 18:16:37','2021-02-11 18:16:37','','OA_HeroImage_FG_3840x2132_v100','','inherit','open','closed','','oa_heroimage_fg_3840x2132_v100','','','2021-02-11 18:16:37','2021-02-11 18:16:37','',5,'https://oneacademy.labcp.co/app/uploads/2021/02/OA_HeroImage_FG_3840x2132_v100.png',0,'attachment','image/png',0),(181,1,'2021-02-11 18:16:45','2021-02-11 18:16:45','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-02-11 18:16:45','2021-02-11 18:16:45','',5,'https://oneacademy.labcp.co/5-revision-v1/',0,'revision','',0),(182,1,'2021-02-18 18:17:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-02-18 18:17:41','0000-00-00 00:00:00','',0,'https://oneacademy.labcp.co/?p=182',0,'post','',0),(183,1,'2021-02-18 18:22:58','2021-02-18 18:22:58','','OA_HeroImage_Desktop_BG_3842x2270','','inherit','open','closed','','oa_heroimage_desktop_bg_3842x2270','','','2021-02-18 18:23:17','2021-02-18 18:23:17','',5,'https://oneacademy.labcp.co/app/uploads/2021/02/OA_HeroImage_Desktop_BG_3842x2270.png',0,'attachment','image/png',0),(184,1,'2021-02-18 18:23:21','2021-02-18 18:23:21','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-02-18 18:23:21','2021-02-18 18:23:21','',5,'https://oneacademy.labcp.co/5-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 (1,1,0),(8,1,0),(92,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=2 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,1);
/*!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 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 */;
/*!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=2 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);
/*!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=21 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','cappen-dev'),(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',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"af371747aa309d71de9a425e817721c9cad3d0c82c34f3507217a51b310cd6fc\";a:4:{s:10:\"expiration\";i:1613845061;s:2:\"ip\";s:15:\"191.187.150.175\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36\";s:5:\"login\";i:1613672261;}s:64:\"358a2c5b4157cfea7f4d25b32d3b20bac04cdbad422e0f91eb79a088cb21402a\";a:4:{s:10:\"expiration\";i:1614882127;s:2:\"ip\";s:15:\"108.235.156.207\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36\";s:5:\"login\";i:1613672527;}s:64:\"75765221bbe0283ef4704c9831e524f001279591940c4bbb3f6fb6bdf207d6a0\";a:4:{s:10:\"expiration\";i:1613846546;s:2:\"ip\";s:13:\"186.251.95.29\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36\";s:5:\"login\";i:1613673746;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','182'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"186.251.95.0\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1610404329');
/*!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=2 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,'cappen-dev','$2y$10$y/vphOpxWD1Sn6PpuRDUfuLwSdHE8pNEjsdv0ocujEO9yFdLYb.rW','cappen-dev','dev@cappen.com','https://oneacademy.labcp.co//wp','2020-12-21 23:03:35','',0,'cappen-dev');
/*!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 2021-02-24 13:31:06
